diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2014-03-10 09:23:33 (GMT) |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-03-12 00:06:00 (GMT) |
commit | e0b3165ba521c6824b3e9f563f38a701dfa2d8e6 (patch) | |
tree | c933f6ecc241a38c2e56f1b166c8c66d1635540c /drivers/cpufreq/arm_big_little.c | |
parent | e837f9b58b83a705c9c14b26c3ee29fd9870322e (diff) | |
download | linux-e0b3165ba521c6824b3e9f563f38a701dfa2d8e6.tar.xz |
cpufreq: add 'freq_table' in struct cpufreq_policy
freq table is not per CPU but per policy, so it makes more sense to
keep it within struct cpufreq_policy instead of a per-cpu variable.
This patch does it. Over that, there is no need to set policy->freq_table
to NULL in ->exit(), as policy structure is going to be freed soon.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq/arm_big_little.c')
-rw-r--r-- | drivers/cpufreq/arm_big_little.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/cpufreq/arm_big_little.c b/drivers/cpufreq/arm_big_little.c index 72f87e9..3d87078 100644 --- a/drivers/cpufreq/arm_big_little.c +++ b/drivers/cpufreq/arm_big_little.c @@ -478,7 +478,6 @@ static int bL_cpufreq_exit(struct cpufreq_policy *policy) return -ENODEV; } - cpufreq_frequency_table_put_attr(policy->cpu); put_cluster_clk_and_freq_table(cpu_dev); dev_dbg(cpu_dev, "%s: Exited, cpu: %d\n", __func__, policy->cpu); |