cpu: Silence log spam when a CPU is brought up
Change-Id: Ib9bc76270fedb8d620714faf45de58d5ecdcd64e Signed-off-by: Sultanxda <sultanxda@gmail.com>
This commit is contained in:
parent
8c7501882b
commit
5ddfb5777c
3 changed files with 3 additions and 3 deletions
|
@ -197,7 +197,7 @@ asmlinkage notrace void secondary_start_kernel(void)
|
|||
* the CPU migration code to notice that the CPU is online
|
||||
* before we continue.
|
||||
*/
|
||||
pr_info("CPU%u: Booted secondary processor [%08x]\n",
|
||||
pr_debug("CPU%u: Booted secondary processor [%08x]\n",
|
||||
cpu, read_cpuid_id());
|
||||
set_cpu_online(cpu, true);
|
||||
complete(&cpu_running);
|
||||
|
|
|
@ -451,7 +451,7 @@ static void update_cpu_capacity(unsigned int cpu)
|
|||
|
||||
set_capacity_scale(cpu, capacity);
|
||||
|
||||
pr_info("CPU%d: update cpu_capacity %lu\n",
|
||||
pr_debug("CPU%d: update cpu_capacity %lu\n",
|
||||
cpu, arch_scale_cpu_capacity(NULL, cpu));
|
||||
}
|
||||
|
||||
|
|
|
@ -707,7 +707,7 @@ void enable_nonboot_cpus(void)
|
|||
error = _cpu_up(cpu, 1);
|
||||
trace_suspend_resume(TPS("CPU_ON"), cpu, false);
|
||||
if (!error) {
|
||||
pr_info("CPU%d is up\n", cpu);
|
||||
pr_debug("CPU%d is up\n", cpu);
|
||||
cpu_device = get_cpu_device(cpu);
|
||||
if (!cpu_device)
|
||||
pr_err("%s: failed to get cpu%d device\n",
|
||||
|
|
Loading…
Add table
Reference in a new issue