diff options
| author | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-10-17 16:52:04 -0400 |
|---|---|---|
| committer | Dave Jones <davej@redhat.com> | 2008-12-05 15:20:10 -0500 |
| commit | 10db2e5cbda5b4e13d2e2f134b963bee2e129999 (patch) | |
| tree | c06e6a14ce13127b5b93c241b7c9d021b263354a | |
| parent | 9963d1aad40946b1b6d34f9bee8d8a1b9032ae22 (diff) | |
[CPUFREQ] p4-clockmod: reduce noise
On those CPUs which are SpeedStep (EST) capable, we do not care at all if
p4-clockmod does not work, since a technically superior CPU frequency
management technology is to be used.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Signed-off-by: Dave Jones <davej@redhat.com>
| -rw-r--r-- | arch/x86/kernel/cpu/cpufreq/p4-clockmod.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/cpufreq/p4-clockmod.c b/arch/x86/kernel/cpu/cpufreq/p4-clockmod.c index b8e05ee4f73..ba3a94a997c 100644 --- a/arch/x86/kernel/cpu/cpufreq/p4-clockmod.c +++ b/arch/x86/kernel/cpu/cpufreq/p4-clockmod.c | |||
| @@ -171,7 +171,9 @@ static unsigned int cpufreq_p4_get_frequency(struct cpuinfo_x86 *c) | |||
| 171 | } | 171 | } |
| 172 | 172 | ||
| 173 | if (c->x86 != 0xF) { | 173 | if (c->x86 != 0xF) { |
| 174 | printk(KERN_WARNING PFX "Unknown p4-clockmod-capable CPU. Please send an e-mail to <cpufreq@vger.kernel.org>\n"); | 174 | if (!cpu_has(c, X86_FEATURE_EST)) |
| 175 | printk(KERN_WARNING PFX "Unknown p4-clockmod-capable CPU. " | ||
| 176 | "Please send an e-mail to <cpufreq@vger.kernel.org>\n"); | ||
| 175 | return 0; | 177 | return 0; |
| 176 | } | 178 | } |
| 177 | 179 | ||
