]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
OPP: Drop a redundant in-parameter to _set_opp_level()
authorUlf Hansson <ulf.hansson@linaro.org>
Wed, 19 Jun 2024 14:08:44 +0000 (16:08 +0200)
committerViresh Kumar <viresh.kumar@linaro.org>
Tue, 25 Jun 2024 11:27:41 +0000 (16:57 +0530)
The in-parameter "opp_table" isn't needed by _set_opp_level(). Let's
therefore drop it.

Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
drivers/opp/core.c

index 4e4d293bf5b10617081924fbb4f5b0dc57af499a..5f4598246a8740d68a9a3e1f5034e68025308aa7 100644 (file)
@@ -1102,8 +1102,7 @@ static int _set_required_opps(struct device *dev, struct opp_table *opp_table,
        return 0;
 }
 
-static int _set_opp_level(struct device *dev, struct opp_table *opp_table,
-                         struct dev_pm_opp *opp)
+static int _set_opp_level(struct device *dev, struct dev_pm_opp *opp)
 {
        unsigned int level = 0;
        int ret = 0;
@@ -1171,7 +1170,7 @@ static int _disable_opp_table(struct device *dev, struct opp_table *opp_table)
        if (opp_table->regulators)
                regulator_disable(opp_table->regulators[0]);
 
-       ret = _set_opp_level(dev, opp_table, NULL);
+       ret = _set_opp_level(dev, NULL);
        if (ret)
                goto out;
 
@@ -1220,7 +1219,7 @@ static int _set_opp(struct device *dev, struct opp_table *opp_table,
                        return ret;
                }
 
-               ret = _set_opp_level(dev, opp_table, opp);
+               ret = _set_opp_level(dev, opp);
                if (ret)
                        return ret;
 
@@ -1267,7 +1266,7 @@ static int _set_opp(struct device *dev, struct opp_table *opp_table,
                        return ret;
                }
 
-               ret = _set_opp_level(dev, opp_table, opp);
+               ret = _set_opp_level(dev, opp);
                if (ret)
                        return ret;