Message ID | 1594348284-14199-6-git-send-email-andrew-sh.cheng@mediatek.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Add cpufreq and cci devfreq for mt8183, and SVS support | expand |
On 10-07-20, 10:31, Andrew-sh.Cheng wrote: > From: "Andrew-sh.Cheng" <andrew-sh.cheng@mediatek.com> > > Modify dev_pm_opp_get_freq() to return freqeuncy > even this opp item is not available. > So that we can get the information of disable opp items. > > Change-Id: I54dacf13050397f5080ccdb8b07d6220e7461e4e > CR-Id: > Feature: > Signed-off-by: Andrew-sh.Cheng <andrew-sh.cheng@mediatek.com> > --- > drivers/opp/core.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/opp/core.c b/drivers/opp/core.c > index eed42d6b2e6b..5213e0462382 100644 > --- a/drivers/opp/core.c > +++ b/drivers/opp/core.c > @@ -118,7 +118,7 @@ EXPORT_SYMBOL_GPL(dev_pm_opp_get_voltage); > */ > unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp) > { > - if (IS_ERR_OR_NULL(opp) || !opp->available) { > + if (IS_ERR_OR_NULL(opp)) { > pr_err("%s: Invalid parameters\n", __func__); > return 0; > } Please cleanup this patch for all the extra stuff that isn't required mainline and send it again to me separately from this series.
On Mon, 2020-07-13 at 15:12 +0530, Viresh Kumar wrote: > On 10-07-20, 10:31, Andrew-sh.Cheng wrote: > > From: "Andrew-sh.Cheng" <andrew-sh.cheng@mediatek.com> > > > > Modify dev_pm_opp_get_freq() to return freqeuncy > > even this opp item is not available. > > So that we can get the information of disable opp items. > > > > Change-Id: I54dacf13050397f5080ccdb8b07d6220e7461e4e > > CR-Id: > > Feature: > > Signed-off-by: Andrew-sh.Cheng <andrew-sh.cheng@mediatek.com> > > --- > > drivers/opp/core.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/opp/core.c b/drivers/opp/core.c > > index eed42d6b2e6b..5213e0462382 100644 > > --- a/drivers/opp/core.c > > +++ b/drivers/opp/core.c > > @@ -118,7 +118,7 @@ EXPORT_SYMBOL_GPL(dev_pm_opp_get_voltage); > > */ > > unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp) > > { > > - if (IS_ERR_OR_NULL(opp) || !opp->available) { > > + if (IS_ERR_OR_NULL(opp)) { > > pr_err("%s: Invalid parameters\n", __func__); > > return 0; > > } > > Please cleanup this patch for all the extra stuff that isn't required mainline > and send it again to me separately from this series. Hi Viresh~ I just resend this single patch to --to="Viresh Kumar <viresh.kumar@linaro.org>" --cc=srv_heupstream@mediatek.com Please help check. Thank you. >
diff --git a/drivers/opp/core.c b/drivers/opp/core.c index eed42d6b2e6b..5213e0462382 100644 --- a/drivers/opp/core.c +++ b/drivers/opp/core.c @@ -118,7 +118,7 @@ EXPORT_SYMBOL_GPL(dev_pm_opp_get_voltage); */ unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp) { - if (IS_ERR_OR_NULL(opp) || !opp->available) { + if (IS_ERR_OR_NULL(opp)) { pr_err("%s: Invalid parameters\n", __func__); return 0; }