diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2006-06-21 01:32:56 -0400 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2006-06-21 17:34:25 -0400 |
commit | 9ed059e1551bf36092215b965838502ac21f42e4 (patch) | |
tree | 083f7ffc708a4b0c9a2ebb6519478edf1ea3a825 /arch/i386 | |
parent | 491b07c98f2ac75f1a4370af76ae2403a4c579f5 (diff) |
[CPUFREQ] Fix powernow-k8 SMP kernel on UP hardware bug.
Fix powernow-k8 doesn't load bug.
Reference: https://launchpad.net/distros/ubuntu/+source/linux-source-2.6.15/+bug/35145
Signed-off-by: Ben Collins <bcollins@ubuntu.com>
Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'arch/i386')
-rw-r--r-- | arch/i386/kernel/cpu/cpufreq/powernow-k8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/kernel/cpu/cpufreq/powernow-k8.c b/arch/i386/kernel/cpu/cpufreq/powernow-k8.c index 756d0a333ed6..2d6491672559 100644 --- a/arch/i386/kernel/cpu/cpufreq/powernow-k8.c +++ b/arch/i386/kernel/cpu/cpufreq/powernow-k8.c | |||
@@ -1163,7 +1163,7 @@ static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol) | |||
1163 | * Use the PSB BIOS structure. This is only availabe on | 1163 | * Use the PSB BIOS structure. This is only availabe on |
1164 | * an UP version, and is deprecated by AMD. | 1164 | * an UP version, and is deprecated by AMD. |
1165 | */ | 1165 | */ |
1166 | if ((num_online_cpus() != 1) || (num_possible_cpus() != 1)) { | 1166 | if (num_online_cpus() != 1) { |
1167 | printk(KERN_ERR PFX "MP systems not supported by PSB BIOS structure\n"); | 1167 | printk(KERN_ERR PFX "MP systems not supported by PSB BIOS structure\n"); |
1168 | kfree(data); | 1168 | kfree(data); |
1169 | return -ENODEV; | 1169 | return -ENODEV; |