dev_pm_opp_of_add_table() can fail with a return value of -EPROBE_DEFER and in such a case we should skip printing the error message, as its not really an error.
Signed-off-by: Viresh Kumar viresh.kumar@linaro.org --- drivers/base/power/opp/cpu.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/base/power/opp/cpu.c b/drivers/base/power/opp/cpu.c index 9ac691341fb0..f259a994fd16 100644 --- a/drivers/base/power/opp/cpu.c +++ b/drivers/base/power/opp/cpu.c @@ -198,8 +198,9 @@ int dev_pm_opp_of_cpumask_add_table(cpumask_var_t 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); + if (ret != -EPROBE_DEFER) + pr_err("%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);