soc: renesas: smartbond: Fix exiting from suspend state

We need to enable irqs that were disabled when entering suspend state.

Signed-off-by: Andrzej Kaczmarek <andrzej.kaczmarek@codecoup.pl>
This commit is contained in:
Andrzej Kaczmarek 2024-05-22 20:24:39 +02:00 committed by Anas Nashif
commit a6e17b34f6

View file

@ -39,6 +39,10 @@ void pm_state_exit_post_ops(enum pm_state state, uint8_t substate_id)
{
ARG_UNUSED(state);
ARG_UNUSED(substate_id);
if (state == PM_STATE_STANDBY) {
__enable_irq();
}
}
static int renesas_da1469x_pm_init(void)