1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #8956 from aabadie/pr/cpu/guard_lpc1768

cpu/lpc1768: remove useless timer periph file guard
This commit is contained in:
Bas Stottelaar 2018-04-16 13:17:01 +02:00 committed by GitHub
commit 56917c8709
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,9 +24,6 @@
#include "periph_conf.h"
#include "periph/timer.h"
/* guard file in case no timers are defined */
#if TIMER_0_EN
/**
* @name Timer channel interrupt flags
* @{
@ -148,5 +145,3 @@ void TIMER_0_ISR(void)
cortexm_isr_end();
}
#endif
#endif /* TIMER_0_EN */