From: Arvind Yadav Date: Fri, 24 Nov 2017 06:55:33 +0000 (+0530) Subject: clk: h8300: pr_err() strings should end with newlines X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1f7e655cbcf589f706e5bfffe672722dbe2390eb;p=linux.git clk: h8300: 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 Signed-off-by: Stephen Boyd --- diff --git a/drivers/clk/h8300/clk-div.c b/drivers/clk/h8300/clk-div.c index 4ae624425e9d4..d413ade95c993 100644 --- a/drivers/clk/h8300/clk-div.c +++ b/drivers/clk/h8300/clk-div.c @@ -24,13 +24,13 @@ static void __init h8300_div_clk_setup(struct device_node *node) num_parents = of_clk_get_parent_count(node); if (!num_parents) { - pr_err("%s: no parent found", clk_name); + pr_err("%s: no parent found\n", clk_name); return; } divcr = of_iomap(node, 0); if (divcr == NULL) { - pr_err("%s: failed to map divide register", clk_name); + pr_err("%s: failed to map divide register\n", clk_name); goto error; } offset = (unsigned long)divcr & 3;