diff options
author | Dave Jones <davej@redhat.com> | 2006-02-28 06:36:32 +0100 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2006-02-28 06:36:32 +0100 |
commit | 2c906ae67b5b2fc3585230b16406400a363b42e4 (patch) | |
tree | fc1aba2158f37a741de0f1b3918b326225194ba3 /arch/i386/kernel/cpu | |
parent | Merge git://oss.sgi.com:8090/oss/git/xfs-rc-fixes (diff) | |
download | linux-2c906ae67b5b2fc3585230b16406400a363b42e4.tar.xz linux-2c906ae67b5b2fc3585230b16406400a363b42e4.zip |
[CPUFREQ] Silence powernow-k8 warning on k7's.
Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'arch/i386/kernel/cpu')
-rw-r--r-- | arch/i386/kernel/cpu/cpufreq/powernow-k8.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/i386/kernel/cpu/cpufreq/powernow-k8.c b/arch/i386/kernel/cpu/cpufreq/powernow-k8.c index e11a09207ec8..3b3a94987d10 100644 --- a/arch/i386/kernel/cpu/cpufreq/powernow-k8.c +++ b/arch/i386/kernel/cpu/cpufreq/powernow-k8.c @@ -474,8 +474,10 @@ static int check_supported_cpu(unsigned int cpu) goto out; eax = cpuid_eax(CPUID_PROCESSOR_SIGNATURE); + if ((eax & CPUID_XFAM) != CPUID_XFAM_K8) + goto out; + if (((eax & CPUID_USE_XFAM_XMOD) != CPUID_USE_XFAM_XMOD) || - ((eax & CPUID_XFAM) != CPUID_XFAM_K8) || ((eax & CPUID_XMOD) > CPUID_XMOD_REV_G)) { printk(KERN_INFO PFX "Processor cpuid %x not supported\n", eax); goto out; |