[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20190416172309.7428-1-moseschristopherb@gmail.com>
Date: Tue, 16 Apr 2019 22:53:09 +0530
From: Moses Christopher <moseschristopherb@...il.com>
To: unlisted-recipients:; (no To-header on input)
Cc: moseschristopherb@...il.com,
Daniel Lezcano <daniel.lezcano@...aro.org>,
Thomas Gleixner <tglx@...utronix.de>,
linux-kernel@...r.kernel.org
Subject: [PATCH] clocksource: timer-probe: change log level to warn
- In drivers/clocksource/timer-probe.c, the log level for the message
stating "no matching timers found" should be of warning(4) rather
than critical(2)
- Reference:
- https://e2e.ti.com/support/processors/f/791/t/726024
- As per the feedback received from Daniel Lezcano
Signed-off-by: Moses Christopher <moseschristopherb@...il.com>
---
drivers/clocksource/timer-probe.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/clocksource/timer-probe.c b/drivers/clocksource/timer-probe.c
index 028075720334..246b45d22d08 100644
--- a/drivers/clocksource/timer-probe.c
+++ b/drivers/clocksource/timer-probe.c
@@ -50,5 +50,5 @@ void __init timer_probe(void)
timers += acpi_probe_device_table(timer);
if (!timers)
- pr_crit("%s: no matching timers found\n", __func__);
+ pr_warn("%s: no matching timers found\n", __func__);
}
--
2.17.1
Powered by blists - more mailing lists