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

clk: lpc32xx: 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>
Acked-by: Vladimir Zapolskiy <vz@mleia.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>

authored by

Arvind Yadav and committed by
Stephen Boyd
ea27e86d d7b4e737

+2 -2
+2 -2
drivers/clk/nxp/clk-lpc32xx.c
··· 526 526 !(pll_is_valid(parent_rate, 1, 1000000, 20000000) 527 527 && pll_is_valid(cco_rate, 1, 156000000, 320000000) 528 528 && pll_is_valid(ref_rate, 1, 1000000, 27000000))) 529 - pr_err("%s: PLL clocks are not in valid ranges: %lu/%lu/%lu", 529 + pr_err("%s: PLL clocks are not in valid ranges: %lu/%lu/%lu\n", 530 530 clk_hw_get_name(hw), 531 531 parent_rate, cco_rate, ref_rate); 532 532 ··· 1505 1505 return; 1506 1506 } 1507 1507 if (clk_get_rate(clk_32k) != 32768) { 1508 - pr_err("invalid clock rate of external 32KHz oscillator"); 1508 + pr_err("invalid clock rate of external 32KHz oscillator\n"); 1509 1509 return; 1510 1510 } 1511 1511