From 1e0b58a5a433b696d94d0ca193d25b01b6fb7edd Mon Sep 17 00:00:00 2001 From: dylad Date: Wed, 28 Jun 2023 18:42:30 +0200 Subject: [PATCH] cpu/nrf9160: remove duplicate set of SEVONPEND bit Signed-off-by: dylad --- cpu/nrf9160/cpu.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/cpu/nrf9160/cpu.c b/cpu/nrf9160/cpu.c index a04be65fbe..e32b7b272e 100644 --- a/cpu/nrf9160/cpu.c +++ b/cpu/nrf9160/cpu.c @@ -41,9 +41,6 @@ void cpu_init(void) /* call cortexm default initialization */ cortexm_init(); - /* enable wake up on events for __WFE CPU sleep */ - SCB->SCR |= SCB_SCR_SEVONPEND_Msk; - /* initialize stdio prior to periph_init() to allow use of DEBUG() there */ early_init();