Skip to content

Commit

Permalink
[nrf fromlist] ipc: align icbmsg deregistration to no-multithreading
Browse files Browse the repository at this point in the history
Align icbmsg deregistration modification to no-multithreading.

Upstream PR: zephyrproject-rtos/zephyr#79382

Signed-off-by: Magdalena Pastula <[email protected]>
  • Loading branch information
magp-nordic committed Oct 4, 2024
1 parent 0cc37d0 commit ed9919e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions subsys/ipc/ipc_service/backends/ipc_icbmsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,11 @@ static int register_ept(const struct device *instance, void **token,
if (!matching_state) {
return -EINVAL;
}
#ifdef CONFIG_MULTITHREADING
schedule_ept_bound_process(dev_data);
#else
ept_bound_process(dev_data);
#endif
return 0;
}
}
Expand Down

0 comments on commit ed9919e

Please sign in to comment.