From 0f625eaebd8b6ae7011e4e458a97b74f4faa8928 Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Tue, 7 Sep 2021 21:01:51 +0200 Subject: [PATCH] cpu/riscv_common: call cpu_init() --- cpu/riscv_common/start.S | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cpu/riscv_common/start.S b/cpu/riscv_common/start.S index 4dfa0d3908..334782bbef 100644 --- a/cpu/riscv_common/start.S +++ b/cpu/riscv_common/start.S @@ -55,7 +55,8 @@ _start_real: call __libc_init_array - /* Initialize board and start kernel */ + /* Initialize CPU, board and start kernel */ + call cpu_init call board_init call kernel_init