Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <arvind.yadav.cs@gmail.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>

authored by

Arvind Yadav and committed by
Stephen Boyd
d7b4e737 4fbd8d19

+1 -1
+1 -1
drivers/clk/clk-stm32f4.c
··· 1424 1424 1425 1425 base = of_iomap(np, 0); 1426 1426 if (!base) { 1427 - pr_err("%s: unable to map resource", np->name); 1427 + pr_err("%s: unable to map resource\n", np->name); 1428 1428 return; 1429 1429 } 1430 1430