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:
parent
b05136fc06
commit
cc0796ab86
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ void soc_early_init_hook(void)
|
||||||
LOG_ERR("CPU doesn't support PMA. "
|
LOG_ERR("CPU doesn't support PMA. "
|
||||||
"Please disable CONFIG_SOC_ANDES_V5_PMA");
|
"Please disable CONFIG_SOC_ANDES_V5_PMA");
|
||||||
#endif
|
#endif
|
||||||
return -ENODEV;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
pma_init_per_core();
|
pma_init_per_core();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue