diff options
author | Borislav Petkov <[email protected]> | 2016-10-24 19:38:42 +0200 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2016-10-25 11:48:49 +0200 |
commit | d54ff31dd86c6df734d6b2d6382206f2b0816642 (patch) | |
tree | a2b923171e934433ddfdceffecf040e6872af6d0 | |
parent | 9fe68cad6e74967b88d0c6aeca7d9cd6b6e91942 (diff) |
x86/cpu: Remove the printk format specifier in "CPU0: "
We're using a literal, move it into the string.
No functionality change.
Signed-off-by: Borislav Petkov <[email protected]>
Cc: Andy Lutomirski <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: Brian Gerst <[email protected]>
Cc: Denys Vlasenko <[email protected]>
Cc: H. Peter Anvin <[email protected]>
Cc: Josh Poimboeuf <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | arch/x86/kernel/smpboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index 42f5eb7b4f6c..e2e0e35e7fc4 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c @@ -1331,7 +1331,7 @@ void __init native_smp_prepare_cpus(unsigned int max_cpus) default_setup_apic_routing(); cpu0_logical_apicid = apic_bsp_setup(false); - pr_info("CPU%d: ", 0); + pr_info("CPU0: "); print_cpu_info(&cpu_data(0)); if (is_uv_system()) |