From ae9815a888806f7fd5b3d86555b1b3f2d7b59e5d Mon Sep 17 00:00:00 2001 From: Ville Juven Date: Wed, 8 Jan 2025 12:18:13 +0200 Subject: [PATCH] riscv_cpustart.c: Change CPU start related traces to sinfo Like all other platforms do. --- arch/risc-v/src/common/riscv_cpustart.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/risc-v/src/common/riscv_cpustart.c b/arch/risc-v/src/common/riscv_cpustart.c index 5b046ca326..f659babe6f 100644 --- a/arch/risc-v/src/common/riscv_cpustart.c +++ b/arch/risc-v/src/common/riscv_cpustart.c @@ -98,7 +98,7 @@ void riscv_cpu_boot(int cpu) mmu_enable(g_kernel_pgt_pbase, 0); #endif - _info("CPU%d Started\n", this_cpu()); + sinfo("CPU%d Started\n", this_cpu()); #ifdef CONFIG_STACK_COLORATION struct tcb_s *tcb = this_task(); @@ -159,7 +159,7 @@ void riscv_cpu_boot(int cpu) int up_cpu_start(int cpu) { - _info("CPU=%d\n", cpu); + sinfo("CPU=%d\n", cpu); #ifdef CONFIG_SCHED_INSTRUMENTATION /* Notify of the start event */