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: 403e0689d2
(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>
This commit is contained in:
parent
73613b16cb
commit
32dd773169
@ -497,7 +497,7 @@ passive:
|
|||||||
if (IS_ERR(bus->devfreq)) {
|
if (IS_ERR(bus->devfreq)) {
|
||||||
dev_err(dev,
|
dev_err(dev,
|
||||||
"failed to add devfreq dev with passive governor\n");
|
"failed to add devfreq dev with passive governor\n");
|
||||||
ret = -EPROBE_DEFER;
|
ret = PTR_ERR(bus->devfreq);
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user