soc: nordic: nrf54h20: Use KERNEL_INIT_PRIORITY_DEFAULT

Make the SoC initialization priority configurable.

Signed-off-by: Grzegorz Swiderski <grzegorz.swiderski@nordicsemi.no>
This commit is contained in:
Grzegorz Swiderski 2024-04-16 10:46:32 +02:00 committed by Anas Nashif
commit 8212215779

View file

@ -111,4 +111,4 @@ void arch_busy_wait(uint32_t time_us)
nrfx_coredep_delay_us(time_us); nrfx_coredep_delay_us(time_us);
} }
SYS_INIT(nordicsemi_nrf54h_init, PRE_KERNEL_1, 0); SYS_INIT(nordicsemi_nrf54h_init, PRE_KERNEL_1, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);