PM / devfreq: Fix return value in devfreq_remove_governor()
Use the value obtained from the function instead of -EINVAL. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
This commit is contained in:
committed by
MyungJoo Ham
parent
b9e1c8e821
commit
f9c08e2acb
@ -644,7 +644,7 @@ int devfreq_remove_governor(struct devfreq_governor *governor)
|
|||||||
if (IS_ERR(g)) {
|
if (IS_ERR(g)) {
|
||||||
pr_err("%s: governor %s not registered\n", __func__,
|
pr_err("%s: governor %s not registered\n", __func__,
|
||||||
governor->name);
|
governor->name);
|
||||||
err = -EINVAL;
|
err = PTR_ERR(g);
|
||||||
goto err_out;
|
goto err_out;
|
||||||
}
|
}
|
||||||
list_for_each_entry(devfreq, &devfreq_list, node) {
|
list_for_each_entry(devfreq, &devfreq_list, node) {
|
||||||
|
Reference in New Issue
Block a user