On Tue, 2018-06-26 at 17:23 +0200, Rafael J. Wysocki wrote:
> On Thursday, May 31, 2018 1:11:15 PM CEST Yisheng Xie wrote:
> > match_string() returns the index of an array for a matching string,
> > which can be used instead of open coded variant.
> > 
> > Reviewed-by: Andy Shevchenko <andy.shevche...@gmail.com>
Acked-by: Srinivas Pandruvada <srinivas.pandruv...@linux.intel.com>

> > Cc: Srinivas Pandruvada <srinivas.pandruv...@linux.intel.com>
> > Cc: Len Brown <l...@kernel.org>
> > Cc: "Rafael J. Wysocki" <r...@rjwysocki.net>
> > Cc: Viresh Kumar <viresh.ku...@linaro.org>
> > Cc: linux...@vger.kernel.org
> > Signed-off-by: Yisheng Xie <xieyishe...@huawei.com>
> > ---
> > v2:
> >  - add Reviewed-by tag.
> > 
> >  drivers/cpufreq/intel_pstate.c | 15 ++++++---------
> >  1 file changed, 6 insertions(+), 9 deletions(-)
> > performance
> > diff --git a/drivers/cpufreq/intel_pstate.c
> > b/drivers/cpufreq/intel_pstate.c
> > index 17e566af..d701e26 100644
> > --- a/drivers/cpufreq/intel_pstate.c
> > +++ b/drivers/cpufreq/intel_pstate.c
> > @@ -645,21 +645,18 @@ static ssize_t
> > store_energy_performance_preference(
> >  {
> >     struct cpudata *cpu_data = all_cpu_data[policy->cpu];
> >     char str_preference[21];
> > -   int ret, i = 0;
> > +   int ret;
> >  
> >     ret = sscanf(buf, "%20s", str_preference);
> >     if (ret != 1)
> >             return -EINVAL;
> >  
> > -   while (energy_perf_strings[i] != NULL) {
> > -           if (!strcmp(str_preference,
> > energy_perf_strings[i])) {
> > -                   intel_pstate_set_energy_pref_index(cpu_dat
> > a, i);
> > -                   return count;
> > -           }
> > -           ++i;
> > -   }
> > +   ret = match_string(energy_perf_strings, -1,
> > str_preference);
> > +   if (ret < 0)
> > +           return ret;
> >  
> > -   return -EINVAL;
> > +   intel_pstate_set_energy_pref_index(cpu_data, ret);
> > +   return count;
> >  }
> >  
> >  static ssize_t show_energy_performance_preference(
> > 
> 
> Srinivas, any concerns?
> 

Reply via email to