1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #8957 from aabadie/pr/cpu/guard_lpc2387

cpu/lpc2387: remove useless periph file guard
This commit is contained in:
Peter Kietzmann 2018-06-20 09:06:31 +02:00 committed by GitHub
commit 6fd4009b89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 */