pmdomain: qcom: rpmpd: Drop the ->opp_to_performance_state() callback
authorUlf Hansson <ulf.hansson@linaro.org>
Thu, 12 Oct 2023 15:35:58 +0000 (17:35 +0200)
committerUlf Hansson <ulf.hansson@linaro.org>
Tue, 17 Oct 2023 11:57:13 +0000 (13:57 +0200)
Since commit 7c41cdcd3bbe ("OPP: Simplify the over-designed pstate <->
level dance"), there is no longer any need for genpd providers to assign
the ->opp_to_performance_state(), hence let's drop it.

Cc: Bjorn Andersson <andersson@kernel.org>
Cc: Konrad Dybcio <konrad.dybcio@linaro.org>
Cc: linux-arm-msm@vger.kernel.org
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>
Link: https://lore.kernel.org/r/20231012153558.101445-1-ulf.hansson@linaro.org
drivers/pmdomain/qcom/rpmpd.c

index 3135dd1dafe06380481086e1239cfcbce520cfa9..524631dcab4b22ab1feb3c0ca6a8ec1b7f5fc66a 100644 (file)
@@ -908,12 +908,6 @@ out:
        return ret;
 }
 
-static unsigned int rpmpd_get_performance(struct generic_pm_domain *genpd,
-                                         struct dev_pm_opp *opp)
-{
-       return dev_pm_opp_get_level(opp);
-}
-
 static int rpmpd_probe(struct platform_device *pdev)
 {
        int i;
@@ -959,7 +953,6 @@ static int rpmpd_probe(struct platform_device *pdev)
                rpmpds[i]->pd.power_off = rpmpd_power_off;
                rpmpds[i]->pd.power_on = rpmpd_power_on;
                rpmpds[i]->pd.set_performance_state = rpmpd_set_performance;
-               rpmpds[i]->pd.opp_to_performance_state = rpmpd_get_performance;
                pm_genpd_init(&rpmpds[i]->pd, NULL, true);
 
                data->domains[i] = &rpmpds[i]->pd;