diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2013-09-16 09:26:26 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-09-30 14:18:43 -0400 |
commit | 0e645df9c481b932c99cf1fd38c568b42c705408 (patch) | |
tree | e4e6967983fd59a96cc21f0718b6f753ee79434f /drivers/cpufreq/pmac64-cpufreq.c | |
parent | 2e4633e4c15b92ffc05e030907ebdb9404d5554c (diff) |
cpufreq: pmac: use cpufreq_table_validate_and_show()
Lets use cpufreq_table_validate_and_show() instead of calling
cpufreq_frequency_table_cpuinfo() and cpufreq_frequency_table_get_attr().
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/pmac64-cpufreq.c')
-rw-r--r-- | drivers/cpufreq/pmac64-cpufreq.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/cpufreq/pmac64-cpufreq.c b/drivers/cpufreq/pmac64-cpufreq.c index 3a51ad7e47c8..41fa89e4d9d8 100644 --- a/drivers/cpufreq/pmac64-cpufreq.c +++ b/drivers/cpufreq/pmac64-cpufreq.c | |||
@@ -363,10 +363,8 @@ static int g5_cpufreq_cpu_init(struct cpufreq_policy *policy) | |||
363 | * cpufreq core if in the secondary policy we tell it that | 363 | * cpufreq core if in the secondary policy we tell it that |
364 | * it actually must be one policy together with all others. */ | 364 | * it actually must be one policy together with all others. */ |
365 | cpumask_copy(policy->cpus, cpu_online_mask); | 365 | cpumask_copy(policy->cpus, cpu_online_mask); |
366 | cpufreq_frequency_table_get_attr(g5_cpu_freqs, policy->cpu); | ||
367 | 366 | ||
368 | return cpufreq_frequency_table_cpuinfo(policy, | 367 | return cpufreq_table_validate_and_show(policy, g5_cpu_freqs); |
369 | g5_cpu_freqs); | ||
370 | } | 368 | } |
371 | 369 | ||
372 | 370 | ||