From bcab6bd1ba86df07f76e2fb45d246f03cdc0cc0e Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Sat, 14 Apr 2018 23:16:36 +0200 Subject: [PATCH] cpu/lpc2387: remove useless periph file guard --- cpu/lpc2387/periph/pwm.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cpu/lpc2387/periph/pwm.c b/cpu/lpc2387/periph/pwm.c index 21b6381ba4..5cd4a21e8e 100644 --- a/cpu/lpc2387/periph/pwm.c +++ b/cpu/lpc2387/periph/pwm.c @@ -27,9 +27,6 @@ #include "bitarithm.h" #include "periph/pwm.h" -/* guard file in case no PWM device is defined */ -#ifdef PWM_NUMOF - /** * @note The PWM is always initialized with left-aligned mode. * @@ -126,5 +123,3 @@ void pwm_poweroff(pwm_t dev) PWM1TCR &= ~(BIT0); PCONP &= ~(PCPWM1); } - -#endif /* PWM_NUMOF */