Commit 3c044a15 authored by Arvind Yadav's avatar Arvind Yadav Committed by Daniel Lezcano

clocksource/drivers/owl: pr_err() strings should end with newlines

pr_err() messages should end with a new-line to avoid other messages being
concatenated.
Signed-off-by: default avatarArvind Yadav <arvind.yadav.cs@gmail.com>
Reviewed-by: default avatarAndreas Färber <afaerber@suse.de>
Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
parent 1893428b
...@@ -125,7 +125,7 @@ static int __init owl_timer_init(struct device_node *node) ...@@ -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"); owl_timer_base = of_io_request_and_map(node, 0, "owl-timer");
if (IS_ERR(owl_timer_base)) { 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); return PTR_ERR(owl_timer_base);
} }
...@@ -134,7 +134,7 @@ static int __init owl_timer_init(struct device_node *node) ...@@ -134,7 +134,7 @@ static int __init owl_timer_init(struct device_node *node)
timer1_irq = of_irq_get_byname(node, "timer1"); timer1_irq = of_irq_get_byname(node, "timer1");
if (timer1_irq <= 0) { if (timer1_irq <= 0) {
pr_err("Can't parse timer1 IRQ"); pr_err("Can't parse timer1 IRQ\n");
return -EINVAL; return -EINVAL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment