From: Arvind Yadav Date: Fri, 24 Nov 2017 06:55:28 +0000 (+0530) Subject: clk: stm32f4: pr_err() strings should end with newlines X-Git-Tag: v4.16-rc1~97^2~10^2~5 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=d7b4e737e46410cd0037158e16e170e828ac6692;p=users%2Fjedix%2Flinux-maple.git clk: stm32f4: 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/clk-stm32f4.c b/drivers/clk/clk-stm32f4.c index 96c6b6bc8f0e4..da44f8dc1d292 100644 --- a/drivers/clk/clk-stm32f4.c +++ b/drivers/clk/clk-stm32f4.c @@ -1424,7 +1424,7 @@ static void __init stm32f4_rcc_init(struct device_node *np) base = of_iomap(np, 0); if (!base) { - pr_err("%s: unable to map resource", np->name); + pr_err("%s: unable to map resource\n", np->name); return; }