1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-16 01:53:51 +01:00

cpu/cortexm_common: Fix cpu_sleep_until_event()

This commit is contained in:
DipSwitch 2016-03-16 00:23:50 +01:00
parent 807fba2f6a
commit 64b3957323

View File

@ -76,7 +76,6 @@ static inline void cpu_print_last_instruction(void)
*/ */
static inline void cpu_sleep_until_event(void) static inline void cpu_sleep_until_event(void)
{ {
__SEV();
__WFE(); __WFE();
} }