diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-09-25 04:16:41 -0400 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2017-10-19 17:49:02 -0400 |
commit | 2554828b17ad16892cdd1becb43230782f0c0cfd (patch) | |
tree | beca3d371d27ffd121daa1654540a21806cb82b0 | |
parent | 3c044a15ff2e4ba97eb14d772510eba974c6db58 (diff) |
clocksource/drivers/rockchip: 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: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
-rw-r--r-- | drivers/clocksource/rockchip_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clocksource/rockchip_timer.c b/drivers/clocksource/rockchip_timer.c index c27f4c850d83..33f370dbd0d6 100644 --- a/drivers/clocksource/rockchip_timer.c +++ b/drivers/clocksource/rockchip_timer.c | |||
@@ -274,7 +274,7 @@ static int __init rk_clksrc_init(struct device_node *np) | |||
274 | TIMER_NAME, rk_clksrc->freq, 250, 32, | 274 | TIMER_NAME, rk_clksrc->freq, 250, 32, |
275 | clocksource_mmio_readl_down); | 275 | clocksource_mmio_readl_down); |
276 | if (ret) { | 276 | if (ret) { |
277 | pr_err("Failed to register clocksource"); | 277 | pr_err("Failed to register clocksource\n"); |
278 | goto out_clocksource; | 278 | goto out_clocksource; |
279 | } | 279 | } |
280 | 280 | ||