Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions modules/hal_nordic/nrfs/backends/nrfs_backend_ipc_service.c
Original file line number Diff line number Diff line change
Expand Up @@ -280,4 +280,6 @@ __weak void nrfs_backend_fatal_error_handler(enum nrfs_backend_error error_id)
sys_reboot(SYS_REBOOT_WARM);
}

BUILD_ASSERT(CONFIG_NRFS_BACKEND_IPC_SERVICE_INIT_PRIO > CONFIG_IPC_SERVICE_REG_BACKEND_PRIORITY);

SYS_INIT(ipc_channel_init, POST_KERNEL, CONFIG_NRFS_BACKEND_IPC_SERVICE_INIT_PRIO);
3 changes: 2 additions & 1 deletion soc/nordic/common/mram_latency.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,4 +175,5 @@ static int init_nrfs(void)
}

SYS_INIT(init_manager, PRE_KERNEL_1, 0);
SYS_INIT(init_nrfs, APPLICATION, CONFIG_APPLICATION_INIT_PRIORITY);
/* Needs to be initialized after IPC and nrfs. */
SYS_INIT(init_nrfs, POST_KERNEL, UTIL_INC(CONFIG_NRFS_BACKEND_IPC_SERVICE_INIT_PRIO));
Loading