soc: andestech: soc_per_core_init_hook() shouldn't return value

The `soc_per_core_init_hook()` function now has `void` type after
da118b9, so it should just return without any value.

Signed-off-by: Yong Cong Sin <ycsin@meta.com>
Signed-off-by: Yong Cong Sin <yongcong.sin@gmail.com>
This commit is contained in:
Yong Cong Sin 2024-10-30 22:26:58 +08:00 committed by Anas Nashif
commit cc0796ab86

View file

@ -216,7 +216,7 @@ void soc_early_init_hook(void)
LOG_ERR("CPU doesn't support PMA. "
"Please disable CONFIG_SOC_ANDES_V5_PMA");
#endif
return -ENODEV;
return;
}
pma_init_per_core();