Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions soc/nordic/common/gppi_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <soc/interconnect/nrfx_gppi_lumos.h>
#endif

static int gppi_init(void)
static int _gppi_init(void)
{
static nrfx_gppi_t gppi_instance;

Expand Down Expand Up @@ -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