VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   57 Tags
author: Viresh Kumar <viresh.kumar@linaro.org> 2020-10-20 16:03:15 +0530 committer: Viresh Kumar <viresh.kumar@linaro.org> 2020-10-27 10:38:28 +0530 commit: 47efcbcb340cca5d3b3d515964f09e1fec599a29 parent: 1f6620f87006dc02c608466cd990778aaadf386a
Commit Summary:
opp: Fix early exit from dev_pm_opp_register_set_opp_helper()
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/drivers/opp/core.c b/drivers/opp/core.c
index 2483e765318a..4ac4e7ce6b8b 100644
--- a/drivers/opp/core.c
+++ b/drivers/opp/core.c
@@ -1930,7 +1930,7 @@ struct opp_table *dev_pm_opp_register_set_opp_helper(struct device *dev,
 		return ERR_PTR(-EINVAL);
 
 	opp_table = dev_pm_opp_get_opp_table(dev);
-	if (!IS_ERR(opp_table))
+	if (IS_ERR(opp_table))
 		return opp_table;
 
 	/* This should be called before OPPs are initialized */