From: Russell King <rmk@dyn-67.arm.linux.org.uk>
Date: Sun, 6 Nov 2005 19:49:21 +0000 (+0000)
Subject: [ARM] Don't call dump_cpu_info unless we're booting
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=32f8b97ca39421057d8adef05b7219127355d60c;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git

[ARM] Don't call dump_cpu_info unless we're booting

We don't want to call dump_cpu_info() from cpu_init() after boot since
it produces a lot of unnecessary noise - since cpu_init() gets called
on resume and hotplug cpu insertion events.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
---

diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c
index c9b69771f92e..a6d7fb81330e 100644
--- a/arch/arm/kernel/setup.c
+++ b/arch/arm/kernel/setup.c
@@ -338,7 +338,8 @@ void cpu_init(void)
 		BUG();
 	}
 
-	dump_cpu_info(cpu);
+	if (system_state == SYSTEM_BOOTING)
+		dump_cpu_info(cpu);
 
 	/*
 	 * setup stacks for re-entrant exception handlers