Message ID | 4C127DEECDA287C8+20241017032010.96772-1-wangyuli@uniontech.com (mailing list archive) |
---|---|
State | Accepted |
Commit | c05ad457ce8c91793de0535c3c86fc67732e70ef |
Headers | show |
Series | [RESEND.,v2] riscv: Use '%u' to format the output of 'cpu' | expand |
Hello: This patch was applied to riscv/linux.git (fixes) by Palmer Dabbelt <palmer@rivosinc.com>: On Thu, 17 Oct 2024 11:20:10 +0800 you wrote: > 'cpu' is an unsigned integer, so its conversion specifier should > be %u, not %d. > > Suggested-by: Wentao Guan <guanwentao@uniontech.com> > Suggested-by: Maciej W. Rozycki <macro@orcam.me.uk> > Link: https://lore.kernel.org/all/alpine.DEB.2.21.2409122309090.40372@angie.orcam.me.uk/ > Signed-off-by: WangYuli <wangyuli@uniontech.com> > Reviewed-by: Charlie Jenkins <charlie@rivosinc.com> > Tested-by: Charlie Jenkins <charlie@rivosinc.com> > > [...] Here is the summary with links: - [RESEND.,v2] riscv: Use '%u' to format the output of 'cpu' https://git.kernel.org/riscv/c/c05ad457ce8c You are awesome, thank you!
diff --git a/arch/riscv/kernel/cpu-hotplug.c b/arch/riscv/kernel/cpu-hotplug.c index 28b58fc5ad19..a1e38ecfc8be 100644 --- a/arch/riscv/kernel/cpu-hotplug.c +++ b/arch/riscv/kernel/cpu-hotplug.c @@ -58,7 +58,7 @@ void arch_cpuhp_cleanup_dead_cpu(unsigned int cpu) if (cpu_ops->cpu_is_stopped) ret = cpu_ops->cpu_is_stopped(cpu); if (ret) - pr_warn("CPU%d may not have stopped: %d\n", cpu, ret); + pr_warn("CPU%u may not have stopped: %d\n", cpu, ret); } /*