soc: silabs_exx32: define an empty pm_state_exit_post_ops

Some EFR32 build broke after 3d2194f11e with:

pm.c:152: undefined reference to `pm_state_exit_post_ops'

Add an extra empty function to make this one build again.

Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
This commit is contained in:
Fabio Baltieri 2023-07-24 14:08:05 +00:00 committed by Carles Cufí
commit e065e5c600

View file

@ -73,6 +73,11 @@ void pm_state_set(enum pm_state state, uint8_t substate_id)
__enable_irq();
}
void pm_state_exit_post_ops(enum pm_state state, uint8_t substate_id)
{
ARG_UNUSED(state);
ARG_UNUSED(substate_id);
}
/**
* Some SiLabs blobs, such as RAIL, call directly into sl_power_manager, and