aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/devfreq
diff options
context:
space:
mode:
authorChanwoo Choi <cw00.choi@samsung.com>2016-12-28 20:52:36 +0900
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2017-01-03 00:21:45 +0100
commit32dd7731699765f21dbe6df9020e613d4ed73fc3 (patch)
treefdcf75c6c6e2d8dec72beb411472f02c050b1f95 /drivers/devfreq
parentPM / devfreq: Fix the bug of devfreq_add_device when governor is NULL (diff)
downloadlinux-dev-32dd7731699765f21dbe6df9020e613d4ed73fc3.tar.xz
linux-dev-32dd7731699765f21dbe6df9020e613d4ed73fc3.zip
PM / devfreq: exynos-bus: Fix the wrong return value
This patch fixes the wrong return value. If devfreq driver requires the wrong and non-available governor, it is fail. So, this patch returns the error insead of -EPROBE_DEFER. Fixes: 403e0689d2a9 (PM / devfreq: exynos: Add support of bus frequency of sub-blocks using passive governor) Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/devfreq')
-rw-r--r--drivers/devfreq/exynos-bus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/devfreq/exynos-bus.c b/drivers/devfreq/exynos-bus.c
index a8ed7792ece2..9af86f46fbec 100644
--- a/drivers/devfreq/exynos-bus.c
+++ b/drivers/devfreq/exynos-bus.c
@@ -497,7 +497,7 @@ passive:
if (IS_ERR(bus->devfreq)) {
dev_err(dev,
"failed to add devfreq dev with passive governor\n");
- ret = -EPROBE_DEFER;
+ ret = PTR_ERR(bus->devfreq);
goto err;
}