clocksource/drivers/rockchip: pr_err() strings should end with newlines
authorArvind Yadav <arvind.yadav.cs@gmail.com>
Mon, 25 Sep 2017 08:16:41 +0000 (13:46 +0530)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Thu, 19 Oct 2017 21:49:02 +0000 (23:49 +0200)
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>
drivers/clocksource/rockchip_timer.c

index c27f4c850d83c6bbd82ba60da1140f3fee0e8ed0..33f370dbd0d62f533a0ce0fa2b1c1d674968f677 100644 (file)
@@ -274,7 +274,7 @@ static int __init rk_clksrc_init(struct device_node *np)
                TIMER_NAME, rk_clksrc->freq, 250, 32,
                clocksource_mmio_readl_down);
        if (ret) {
-               pr_err("Failed to register clocksource");
+               pr_err("Failed to register clocksource\n");
                goto out_clocksource;
        }