Revert "[CPUFREQ] powernow-k8: clarify number of cores."

This reverts commit 904f7a3f042b5c6aa9e53ce83f2c9de5e33170ff.

As noted by Peter Anvin:

"It causes build failures on i386.

Yet another case of unnecessary divergence between i386 and x86-64
I'm afraid..."

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

+2 -3
+2 -3
arch/i386/kernel/cpu/cpufreq/powernow-k8.c
··· 1330 1331 if (supported_cpus == num_online_cpus()) { 1332 printk(KERN_INFO PFX "Found %d %s " 1333 - "processors (%d cpu cores) (" VERSION ")\n", 1334 - supported_cpus/cpu_data[0].booted_cores, 1335 - boot_cpu_data.x86_model_id, supported_cpus); 1336 return cpufreq_register_driver(&cpufreq_amd64_driver); 1337 } 1338
··· 1330 1331 if (supported_cpus == num_online_cpus()) { 1332 printk(KERN_INFO PFX "Found %d %s " 1333 + "processors (" VERSION ")\n", supported_cpus, 1334 + boot_cpu_data.x86_model_id); 1335 return cpufreq_register_driver(&cpufreq_amd64_driver); 1336 } 1337