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:
parent
2654fdc6ba
commit
a6e17b34f6
1 changed files with 4 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue