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> |
||
|---|---|---|
| .. | ||
| cavs_clock | ||
| clock_control_api | ||
| nrf_clock_calibration | ||
| nrf_lf_clock_start | ||
| nrf_onoff_and_bt | ||
| onoff | ||
| stm32_clock_configuration | ||