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

clk: SPEAr: 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: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>

authored by

Arvind Yadav and committed by
Stephen Boyd
811284b0 ea27e86d

+1 -1
+1 -1
drivers/clk/spear/clk-frac-synth.c
··· 131 131 struct clk *clk; 132 132 133 133 if (!name || !parent_name || !reg || !rtbl || !rtbl_cnt) { 134 - pr_err("Invalid arguments passed"); 134 + pr_err("Invalid arguments passed\n"); 135 135 return ERR_PTR(-EINVAL); 136 136 } 137 137