|
@@ -307,7 +307,6 @@ static int __init us2e_freq_cpu_init(struct cpufreq_policy *policy)
|
|
|
unsigned long clock_tick = sparc64_get_clock_tick(cpu) / 1000;
|
|
|
struct cpufreq_frequency_table *table =
|
|
|
&us2e_freq_table[cpu].table[0];
|
|
|
- int ret;
|
|
|
|
|
|
table[0].driver_data = 0;
|
|
|
table[0].frequency = clock_tick / 1;
|
|
@@ -325,10 +324,7 @@ static int __init us2e_freq_cpu_init(struct cpufreq_policy *policy)
|
|
|
policy->cpuinfo.transition_latency = 0;
|
|
|
policy->cur = clock_tick;
|
|
|
|
|
|
- ret = cpufreq_frequency_table_cpuinfo(policy, table);
|
|
|
- if (!ret)
|
|
|
- cpufreq_frequency_table_get_attr(table, policy->cpu);
|
|
|
- return ret;
|
|
|
+ return cpufreq_table_validate_and_show(policy, table);
|
|
|
}
|
|
|
|
|
|
static int us2e_freq_cpu_exit(struct cpufreq_policy *policy)
|