diff --git a/soc/nordic/common/gppi_init.c b/soc/nordic/common/gppi_init.c index 98915491041bf..e117900948689 100644 --- a/soc/nordic/common/gppi_init.c +++ b/soc/nordic/common/gppi_init.c @@ -9,7 +9,7 @@ #include #endif -static int gppi_init(void) +static int _gppi_init(void) { static nrfx_gppi_t gppi_instance; @@ -55,5 +55,5 @@ static int gppi_init(void) } #if defined(CONFIG_NRFX_GPPI) && !defined(CONFIG_NRFX_GPPI_V1) -SYS_INIT(gppi_init, PRE_KERNEL_1, 0); +SYS_INIT(_gppi_init, EARLY, 0); #endif