Skip to content

Commit

Permalink
cpufreq: cpufreq-dt: Move newline to end of error message
Browse files Browse the repository at this point in the history
Currently the error message is needlessly splitted across two lines.

Signed-off-by: Geert Uytterhoeven <[email protected]>
Acked-by: Viresh Kumar <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
  • Loading branch information
geertu authored and Jiri Kosina committed Nov 20, 2014
1 parent af22209 commit edd52b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/cpufreq/cpufreq-dt.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ static int cpufreq_init(struct cpufreq_policy *policy)

ret = allocate_resources(policy->cpu, &cpu_dev, &cpu_reg, &cpu_clk);
if (ret) {
pr_err("%s: Failed to allocate resources\n: %d", __func__, ret);
pr_err("%s: Failed to allocate resources: %d\n", __func__, ret);
return ret;
}

Expand Down

0 comments on commit edd52b1

Please sign in to comment.