Skip to content

Commit

Permalink
[CPUFREQ] Remove pointless printk from p4-clockmod.
Browse files Browse the repository at this point in the history
The only machines this is triggering on should be supported by
acpi-cpufreq or acpi's internal throttling.

Signed-off-by: Dave Jones <davej@redhat.com>
  • Loading branch information
Dave Jones committed Aug 3, 2010
1 parent 307069c commit 9d1f44e
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions arch/x86/kernel/cpu/cpufreq/p4-clockmod.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,8 @@ static unsigned int cpufreq_p4_get_frequency(struct cpuinfo_x86 *c)
}
}

if (c->x86 != 0xF) {
if (!cpu_has(c, X86_FEATURE_EST))
printk(KERN_WARNING PFX "Unknown CPU. "
"Please send an e-mail to "
"<cpufreq@vger.kernel.org>\n");
if (c->x86 != 0xF)
return 0;
}

/* on P-4s, the TSC runs with constant frequency independent whether
* throttling is active or not. */
Expand Down

0 comments on commit 9d1f44e

Please sign in to comment.