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 <arvind.yadav.cs@gmail.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
This commit is contained in:
Arvind Yadav 2017-11-24 12:25:33 +05:30 коммит произвёл Stephen Boyd
Родитель 3509ec1c3c
Коммит 1f7e655cbc
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -24,13 +24,13 @@ static void __init h8300_div_clk_setup(struct device_node *node)
num_parents = of_clk_get_parent_count(node); num_parents = of_clk_get_parent_count(node);
if (!num_parents) { if (!num_parents) {
pr_err("%s: no parent found", clk_name); pr_err("%s: no parent found\n", clk_name);
return; return;
} }
divcr = of_iomap(node, 0); divcr = of_iomap(node, 0);
if (divcr == NULL) { 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; goto error;
} }
offset = (unsigned long)divcr & 3; offset = (unsigned long)divcr & 3;