From 9d6ff3d218f2907d57373e939f04dde3f575e61a Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Fri, 18 Dec 2015 12:04:53 +0100 Subject: [PATCH] boards/cc2538dk: cleaned up CPU header file usage --- boards/cc2538dk/board.c | 4 ---- boards/cc2538dk/include/periph_conf.h | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/boards/cc2538dk/board.c b/boards/cc2538dk/board.c index 13eed787d2..0c054f2898 100644 --- a/boards/cc2538dk/board.c +++ b/boards/cc2538dk/board.c @@ -21,10 +21,6 @@ #include "board.h" #include "cpu.h" -#include "ioc.h" -#include "lpm.h" -#include "cc2538-gpio.h" - static void led_init_helper(int gpio_num) { gpio_software_control(gpio_num); gpio_dir_output(gpio_num); diff --git a/boards/cc2538dk/include/periph_conf.h b/boards/cc2538dk/include/periph_conf.h index b3ff27f7cf..6443d6393b 100644 --- a/boards/cc2538dk/include/periph_conf.h +++ b/boards/cc2538dk/include/periph_conf.h @@ -19,7 +19,7 @@ #ifndef PERIPH_CONF_H_ #define PERIPH_CONF_H_ -#include "gptimer.h" +#include "cpu.h" #ifdef __cplusplus extern "C" {