Commit 034d6aac authored by Viresh Kumar's avatar Viresh Kumar
Browse files

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: default avatarViresh Kumar <viresh.kumar@linaro.org>
Acked-by: default avatarManivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
parent a5893928
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)