summaryrefslogtreecommitdiff
path: root/drivers/opp
diff options
context:
space:
mode:
authorViresh Kumar <viresh.kumar@linaro.org>2023-07-21 14:35:08 +0530
committerViresh Kumar <viresh.kumar@linaro.org>2023-07-24 13:27:03 +0530
commit034d6aac2160b732d58d82e34aaf2c058a8f72fa (patch)
tree08d4d852e0ad0b6c2e0b27a5b29a0d3b961d556e /drivers/opp
parenta5893928bb179d67ca1d44a8f66c990480ba541d (diff)
OPP: Update _read_freq() to return the correct frequency
Now that we support finding indexed frequencies, lets update _read_freq() to return the right one. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Acked-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Diffstat (limited to 'drivers/opp')
-rw-r--r--drivers/opp/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/opp/core.c b/drivers/opp/core.c
index 2af958dc17ba..b83f651680e7 100644
--- a/drivers/opp/core.c
+++ b/drivers/opp/core.c
@@ -470,7 +470,7 @@ EXPORT_SYMBOL_GPL(dev_pm_opp_get_opp_count);
/* Helpers to read keys */
static unsigned long _read_freq(struct dev_pm_opp *opp, int index)
{
- return opp->rates[0];
+ return opp->rates[index];
}
static unsigned long _read_level(struct dev_pm_opp *opp, int index)