zephyr/drivers/ipm
Kumar Gala a1195ae39b smp: Move for loops to use arch_num_cpus instead of CONFIG_MP_NUM_CPUS
Change for loops of the form:

for (i = 0; i < CONFIG_MP_NUM_CPUS; i++)
   ...

to

unsigned int num_cpus = arch_num_cpus();
for (i = 0; i < num_cpus; i++)
   ...

We do the call outside of the for loop so that it only happens once,
rather than on every iteration.

Signed-off-by: Kumar Gala <kumar.gala@intel.com>
2022-10-21 13:14:58 +02:00
..
CMakeLists.txt
Kconfig
Kconfig.imx
Kconfig.intel_adsp soc: intel_adsp: Refactored IPC/IDC 2022-09-02 08:18:32 -04:00
Kconfig.nrfx
Kconfig.nrfx_ipc_channel
Kconfig.stm32
ipm_cavs_host.c ipm: intel_adsp: use memory window from DTS 2022-10-11 08:28:25 -04:00
ipm_cavs_idc.c smp: Move for loops to use arch_num_cpus instead of CONFIG_MP_NUM_CPUS 2022-10-21 13:14:58 +02:00
ipm_cavs_idc.h soc: intel_adsp: Refactored IPC/IDC 2022-09-02 08:18:32 -04:00
ipm_esp32.c soc: xtensa: esp32_net: 2022-10-19 16:03:00 +02:00
ipm_handlers.c
ipm_imx.c include: add missing zephyr/irq.h include 2022-10-17 22:57:39 +09:00
ipm_mcux.c include: add missing zephyr/irq.h include 2022-10-17 22:57:39 +09:00
ipm_mhu.c include: add missing zephyr/irq.h include 2022-10-17 22:57:39 +09:00
ipm_mhu.h
ipm_nrfx_ipc.c include: add missing zephyr/irq.h include 2022-10-17 22:57:39 +09:00
ipm_nrfx_ipc.h
ipm_stm32_hsem.c include: add missing zephyr/irq.h include 2022-10-17 22:57:39 +09:00
ipm_stm32_ipcc.c drivers: ipm: fix infinite TXF interrupt 2022-10-18 14:13:34 +02:00