Skip to content

Commit 11f6c2a

Browse files
tokangasnordicjm
authored andcommitted
lib: nrf_modem_lib: use NRF_PROCESSOR_CELLCORE define
Use NRF_PROCESSOR_CELLCORE instead of hardcoded value. Signed-off-by: Tommi Kangas <[email protected]>
1 parent 4cefdfc commit 11f6c2a

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

lib/nrf_modem_lib/nrf_modem_os_rpc.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,7 @@ int nrf_modem_os_rpc_cellcore_boot(void)
133133
/* Don't wait as this is not yet supported. */
134134
bool cpu_wait = false;
135135

136-
/* TODO: Replace hardcoded value with NRF_PROCESSOR_CELLCORE when it's available
137-
* in the MDK.
138-
*/
139-
return ironside_cpuconf(4, NULL, cpu_wait, msg, msg_size);
136+
return ironside_cpuconf(NRF_PROCESSOR_CELLCORE, NULL, cpu_wait, msg, msg_size);
140137
#else
141138
/* Without IronSide SE, cellcore is booted by the SDFW. */
142139
return 0;

0 commit comments

Comments
 (0)