diff options
author | Amit Kucheria <amit.kucheria@linaro.org> | 2019-01-21 15:12:23 +0530 |
---|---|---|
committer | Eduardo Valentin <edubezval@gmail.com> | 2019-02-05 15:50:13 -0800 |
commit | bf78f133cd39e0ed41551150909e41513958a738 (patch) | |
tree | bb13ed4f0322be4b6705edeb6a68220c1265771e /drivers/thermal/cpu_cooling.c | |
parent | 3079f340caa72a3707357c28e8653120757baeb1 (diff) | |
download | linux-bf78f133cd39e0ed41551150909e41513958a738.tar.bz2 |
thermal: cpu_cooling: Clarify error message
Make it clear that it is a failure if the cpufreq driver was unable to
register as a cooling device. Makes it easier to find in logs and
grepping for words like fail, err, warn.
Signed-off-by: Amit Kucheria <amit.kucheria@linaro.org>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
Diffstat (limited to 'drivers/thermal/cpu_cooling.c')
-rw-r--r-- | drivers/thermal/cpu_cooling.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/cpu_cooling.c b/drivers/thermal/cpu_cooling.c index dfd23245f778..6fff16113628 100644 --- a/drivers/thermal/cpu_cooling.c +++ b/drivers/thermal/cpu_cooling.c @@ -774,7 +774,7 @@ of_cpufreq_cooling_register(struct cpufreq_policy *policy) cdev = __cpufreq_cooling_register(np, policy, capacitance); if (IS_ERR(cdev)) { - pr_err("cpu_cooling: cpu%d is not running as cooling device: %ld\n", + pr_err("cpu_cooling: cpu%d failed to register as cooling device: %ld\n", policy->cpu, PTR_ERR(cdev)); cdev = NULL; } |