[CPUFREQ] Remove duplicate cpuinfo struct
We already have one of these declared, so use it, instead of declaring a second one for no good reason. Signed-off-by: Dave Jones <davej@redhat.com>
This commit is contained in:
@@ -479,15 +479,13 @@ static int centrino_cpu_init(struct cpufreq_policy *policy)
|
|||||||
unsigned l, h;
|
unsigned l, h;
|
||||||
int ret;
|
int ret;
|
||||||
int i;
|
int i;
|
||||||
struct cpuinfo_x86 *c = &cpu_data[policy->cpu];
|
|
||||||
|
|
||||||
/* Only Intel makes Enhanced Speedstep-capable CPUs */
|
/* Only Intel makes Enhanced Speedstep-capable CPUs */
|
||||||
if (cpu->x86_vendor != X86_VENDOR_INTEL || !cpu_has(cpu, X86_FEATURE_EST))
|
if (cpu->x86_vendor != X86_VENDOR_INTEL || !cpu_has(cpu, X86_FEATURE_EST))
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
if (cpu_has(c, X86_FEATURE_CONSTANT_TSC)) {
|
if (cpu_has(cpu, X86_FEATURE_CONSTANT_TSC))
|
||||||
centrino_driver.flags |= CPUFREQ_CONST_LOOPS;
|
centrino_driver.flags |= CPUFREQ_CONST_LOOPS;
|
||||||
}
|
|
||||||
|
|
||||||
if (centrino_cpu_init_acpi(policy)) {
|
if (centrino_cpu_init_acpi(policy)) {
|
||||||
if (policy->cpu != 0)
|
if (policy->cpu != 0)
|
||||||
|
Reference in New Issue
Block a user