Commit b2fd708f authored by Arvind Yadav's avatar Arvind Yadav Committed by Eduardo Valentin

thermal: cpu_cooling: pr_err() strings should end with newlines

pr_err() messages should end with a new-line to avoid other messages
being concatenated.
Acked-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Acked-by: default avatarJavi Merino <javi.merino@kernel.org>
Signed-off-by: default avatarArvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: default avatarEduardo Valentin <edubezval@gmail.com>
parent 9e03cf1b
...@@ -696,7 +696,7 @@ __cpufreq_cooling_register(struct device_node *np, ...@@ -696,7 +696,7 @@ __cpufreq_cooling_register(struct device_node *np,
bool first; bool first;
if (IS_ERR_OR_NULL(policy)) { if (IS_ERR_OR_NULL(policy)) {
pr_err("%s: cpufreq policy isn't valid: %p", __func__, policy); pr_err("%s: cpufreq policy isn't valid: %p\n", __func__, policy);
return ERR_PTR(-EINVAL); return ERR_PTR(-EINVAL);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment