PM / OPP: OF: Use pr_debug() instead of pr_err() while adding OPP table
authorViresh Kumar <viresh.kumar@linaro.org>
Wed, 12 Jul 2017 03:51:49 +0000 (09:21 +0530)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Sun, 16 Jul 2017 00:24:33 +0000 (02:24 +0200)
Some platforms add the OPPs dynamically from platform specific drivers
instead of getting them statically from DT. The cpufreq-dt driver
already ignores the return value of dev_pm_opp_of_cpumask_add_table() to
not error out for such cases, but we still end up printing error message
from that routine. That's not nice.

Convert the print message to use pr_debug() instead.

Reported-by: Mason <slash.tmp@free.fr>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/base/power/opp/of.c

index 57eec1ca056977bef29dd73c6a2de95e6a4c8e6a..6f0497b377c7187be5f083c83d2a052b5cd364c9 100644 (file)
@@ -539,8 +539,12 @@ int dev_pm_opp_of_cpumask_add_table(const struct cpumask *cpumask)
 
                ret = dev_pm_opp_of_add_table(cpu_dev);
                if (ret) {
-                       pr_err("%s: couldn't find opp table for cpu:%d, %d\n",
-                              __func__, cpu, ret);
+                       /*
+                        * OPP may get registered dynamically, don't print error
+                        * message here.
+                        */
+                       pr_debug("%s: couldn't find opp table for cpu:%d, %d\n",
+                                __func__, cpu, ret);
 
                        /* Free all other OPPs */
                        dev_pm_opp_of_cpumask_remove_table(cpumask);