summaryrefslogtreecommitdiff
path: root/kernel/cpu.c
diff options
context:
space:
mode:
authorNick Desaulniers <ndesaulniers@google.com>2016-02-23 14:12:49 -0800
committerMichael Bestas <mkbestas@lineageos.org>2019-12-23 23:43:32 +0200
commit5aca54391de9a9950cce9fc52523abd89cf9a9fd (patch)
tree64f85eccff5eb3b5e50c08470fb688f0bf1ac22e /kernel/cpu.c
parent33665da8699e2a1c6570c323f27409ea40764f9c (diff)
Silences WLAN, PCIe, and CPU suspend state kernel messages
Bug: 27134656 Change-Id: I681ec2171472514489365ca4bfc4ef16d9b344fe
Diffstat (limited to 'kernel/cpu.c')
-rw-r--r--kernel/cpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/cpu.c b/kernel/cpu.c
index de267a034b56..223f8f208df1 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -648,7 +648,7 @@ int disable_nonboot_cpus(void)
*/
cpumask_clear(frozen_cpus);
- pr_info("Disabling non-boot CPUs ...\n");
+ pr_debug("Disabling non-boot CPUs ...\n");
for_each_online_cpu(cpu) {
if (cpu == first_cpu)
continue;
@@ -698,7 +698,7 @@ void enable_nonboot_cpus(void)
if (cpumask_empty(frozen_cpus))
goto out;
- pr_info("Enabling non-boot CPUs ...\n");
+ pr_debug("Enabling non-boot CPUs ...\n");
arch_enable_nonboot_cpus_begin();