Skip to content

Commit

Permalink
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.

Signed-off-by: Magdalena Pastula <[email protected]>
  • Loading branch information
magp-nordic committed Oct 3, 2024
1 parent 1a992d6 commit fa14250
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 @@ -1045,7 +1045,11 @@ static int register_ept(const struct device *instance, void **token,
if (!mating_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 fa14250

Please sign in to comment.