Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

riscv_cpustart.c: Change CPU start related traces to sinfo #15467

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions arch/risc-v/src/common/riscv_cpustart.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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 */
Expand Down
Loading