On 27 February 2014 01:47, Saravana Kannan <skan...@codeaurora.org> wrote: > cpufreq_frequency_get_table() is called from all callers of > __cpufreq_stats_create_table(). So, move it inside. > > Suggested-by: Viresh Kumar <viresh.ku...@linaro.org> > Signed-off-by: Saravana Kannan <skan...@codeaurora.org> > --- > drivers/cpufreq/cpufreq_stats.c | 22 +++++++++------------- > 1 file changed, 9 insertions(+), 13 deletions(-) > > diff --git a/drivers/cpufreq/cpufreq_stats.c b/drivers/cpufreq/cpufreq_stats.c > index c52b440..9d9e366 100644 > --- a/drivers/cpufreq/cpufreq_stats.c > +++ b/drivers/cpufreq/cpufreq_stats.c > @@ -180,13 +180,18 @@ static void cpufreq_stats_free_table(unsigned int cpu) > cpufreq_cpu_put(policy); > } > > -static int __cpufreq_stats_create_table(struct cpufreq_policy *policy, > - struct cpufreq_frequency_table *table) > +static int __cpufreq_stats_create_table(struct cpufreq_policy *policy) > { > unsigned int i, j, count = 0, ret = 0; > struct cpufreq_stats *stat; > unsigned int alloc_size; > unsigned int cpu = policy->cpu; > + struct cpufreq_frequency_table *table; > + > + table = cpufreq_frequency_get_table(policy->cpu);
s/policy->cpu/cpu Otherwise, Acked-by: Viresh Kumar <viresh.ku...@linaro.org> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/