From: Russell King <rmk+kernel@arm.linux.org.uk> Date: Tue, 28 Oct 2014 12:08:34 +0000 (+0000) Subject: ARM: reduce "Booted secondary processor" message to debug level X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c68b0274fb3c;p=linux.git ARM: reduce "Booted secondary processor" message to debug level Drop the "CPUn: Booted secondary processor" message from info to debug level. We later print how many CPUs came online, so listing each one is redundant, and when using hotplug, can be quite noisy. Tested-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> --- diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c index 3138d8ea9e55f..7b18a1be179cf 100644 --- a/arch/arm/kernel/smp.c +++ b/arch/arm/kernel/smp.c @@ -351,7 +351,7 @@ asmlinkage void secondary_start_kernel(void) cpu_init(); - pr_info("CPU%u: Booted secondary processor\n", cpu); + pr_debug("CPU%u: Booted secondary processor\n", cpu); preempt_disable(); trace_hardirqs_off();