[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1509312035-17368-9-git-send-email-daniel.lezcano@linaro.org>
Date: Sun, 29 Oct 2017 22:20:26 +0100
From: Daniel Lezcano <daniel.lezcano@...aro.org>
To: tglx@...utronix.de, daniel.lezcano@...aro.org
Cc: linux-kernel@...r.kernel.org,
Arvind Yadav <arvind.yadav.cs@...il.com>,
Andreas Färber <afaerber@...e.de>,
linux-arm-kernel@...ts.infradead.org (moderated list:ARM/ACTIONS SEMI
ARCHITECTURE)
Subject: [PATCH 09/17] clocksource/drivers/owl: pr_err() strings should end with newlines
From: Arvind Yadav <arvind.yadav.cs@...il.com>
pr_err() messages should end with a new-line to avoid other messages being
concatenated.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@...il.com>
Reviewed-by: Andreas Färber <afaerber@...e.de>
Signed-off-by: Daniel Lezcano <daniel.lezcano@...aro.org>
---
drivers/clocksource/owl-timer.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/clocksource/owl-timer.c b/drivers/clocksource/owl-timer.c
index d19c53c..c686305 100644
--- a/drivers/clocksource/owl-timer.c
+++ b/drivers/clocksource/owl-timer.c
@@ -125,7 +125,7 @@ static int __init owl_timer_init(struct device_node *node)
owl_timer_base = of_io_request_and_map(node, 0, "owl-timer");
if (IS_ERR(owl_timer_base)) {
- pr_err("Can't map timer registers");
+ pr_err("Can't map timer registers\n");
return PTR_ERR(owl_timer_base);
}
@@ -134,7 +134,7 @@ static int __init owl_timer_init(struct device_node *node)
timer1_irq = of_irq_get_byname(node, "timer1");
if (timer1_irq <= 0) {
- pr_err("Can't parse timer1 IRQ");
+ pr_err("Can't parse timer1 IRQ\n");
return -EINVAL;
}
--
2.7.4
Powered by blists - more mailing lists