summaryrefslogtreecommitdiffstats
path: root/drivers/base
diff options
context:
space:
mode:
authorViresh Kumar2016-12-01 11:58:22 +0100
committerRafael J. Wysocki2016-12-06 02:28:00 +0100
commite231f8d7ed9a01280d18cd897ae0bbb4118bc954 (patch)
treee78f2a46fce1083580e46a3fb1c52fb28015d714 /drivers/base
parentPM / OPP: Allow platform specific custom set_opp() callbacks (diff)
downloadkernel-qcow2-linux-e231f8d7ed9a01280d18cd897ae0bbb4118bc954.tar.gz
kernel-qcow2-linux-e231f8d7ed9a01280d18cd897ae0bbb4118bc954.tar.xz
kernel-qcow2-linux-e231f8d7ed9a01280d18cd897ae0bbb4118bc954.zip
PM / OPP: Don't WARN on multiple calls to dev_pm_opp_set_regulators()
If a platform specific OPP driver has called this routine first and set the regulators, then the second call from cpufreq-dt driver will hit the WARN_ON(). Remove the WARN_ON(), but continue to return error in such cases. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Reviewed-by: Stephen Boyd <sboyd@codeaurora.org> Tested-by: Dave Gerlach <d-gerlach@ti.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/base')
-rw-r--r--drivers/base/power/opp/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/power/opp/core.c b/drivers/base/power/opp/core.c
index eceebef36f21..35ff06283738 100644
--- a/drivers/base/power/opp/core.c
+++ b/drivers/base/power/opp/core.c
@@ -1485,7 +1485,7 @@ struct opp_table *dev_pm_opp_set_regulators(struct device *dev,
}
/* Already have regulators set */
- if (WARN_ON(opp_table->regulators)) {
+ if (opp_table->regulators) {
ret = -EBUSY;
goto err;
}