Commit edd52b1c39ea3ddb1c814d1d5cd9cc4843a04c01

Authored by Geert Uytterhoeven
Committed by Jiri Kosina
1 parent af222097aa

cpufreq: cpufreq-dt: Move newline to end of error message

Currently the error message is needlessly splitted across two lines.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/cpufreq/cpufreq-dt.c
... ... @@ -193,7 +193,7 @@
193 193  
194 194 ret = allocate_resources(policy->cpu, &cpu_dev, &cpu_reg, &cpu_clk);
195 195 if (ret) {
196   - pr_err("%s: Failed to allocate resources\n: %d", __func__, ret);
  196 + pr_err("%s: Failed to allocate resources: %d\n", __func__, ret);
197 197 return ret;
198 198 }
199 199