Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9ed059e1 authored by Randy Dunlap's avatar Randy Dunlap Committed by Dave Jones
Browse files

[CPUFREQ] Fix powernow-k8 SMP kernel on UP hardware bug.

parent 491b07c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1163,7 +1163,7 @@ static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol)
		 * Use the PSB BIOS structure. This is only availabe on
		 * an UP version, and is deprecated by AMD.
		 */
		if ((num_online_cpus() != 1) || (num_possible_cpus() != 1)) {
		if (num_online_cpus() != 1) {
			printk(KERN_ERR PFX "MP systems not supported by PSB BIOS structure\n");
			kfree(data);
			return -ENODEV;