cpu/lpc2387: remove useless periph file guard

This commit is contained in:
Alexandre Abadie 2018-04-14 23:16:36 +02:00
parent 6089910e6e
commit bcab6bd1ba

View File

@ -27,9 +27,6 @@
#include "bitarithm.h" #include "bitarithm.h"
#include "periph/pwm.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. * @note The PWM is always initialized with left-aligned mode.
* *
@ -126,5 +123,3 @@ void pwm_poweroff(pwm_t dev)
PWM1TCR &= ~(BIT0); PWM1TCR &= ~(BIT0);
PCONP &= ~(PCPWM1); PCONP &= ~(PCPWM1);
} }
#endif /* PWM_NUMOF */