public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] clocksource/OF: remove invalid DT warnings when booting using ACPI
@ 2015-07-23 17:31 Sudeep Holla
  2015-08-03 16:45 ` Daniel Lezcano
  0 siblings, 1 reply; 4+ messages in thread
From: Sudeep Holla @ 2015-07-23 17:31 UTC (permalink / raw)
  To: linux-kernel; +Cc: Sudeep Holla, Rob Herring, Daniel Lezcano, Thomas Gleixner

Since both CONFIG_ACPI and CONFIG_CLKSRC_OF can be enabled on ARM64,
we get this device tree warnings even when booting using ACPI which is
not valid. We can use of_have_populated_dt to check if the device tree
is populated or not and avoid spurious warning.

This patch uses of_have_populated_dt to remove this non legitimate device
tree warning when booting using ACPI tables.

Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
Cc: Rob Herring <robh@kernel.org>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
---
 drivers/clocksource/clksrc-of.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clocksource/clksrc-of.c b/drivers/clocksource/clksrc-of.c
index 0093a8e49e14..47823a2d7220 100644
--- a/drivers/clocksource/clksrc-of.c
+++ b/drivers/clocksource/clksrc-of.c
@@ -38,6 +38,6 @@ void __init clocksource_of_init(void)
 		init_func(np);
 		clocksources++;
 	}
-	if (!clocksources)
+	if (of_have_populated_dt() && !clocksources)
 		pr_crit("%s: no matching clocksources found\n", __func__);
 }
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-08-03 17:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-23 17:31 [PATCH] clocksource/OF: remove invalid DT warnings when booting using ACPI Sudeep Holla
2015-08-03 16:45 ` Daniel Lezcano
2015-08-03 16:56   ` Sudeep Holla
2015-08-03 17:22     ` Daniel Lezcano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox