]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - arch/i386/kernel/cpu/cpufreq/powernow-k8.c
Merge master.kernel.org:/pub/scm/linux/kernel/git/davej/cpufreq
[net-next-2.6.git] / arch / i386 / kernel / cpu / cpufreq / powernow-k8.c
index 9a8ec03cde906d44d0a5f8f23a50f22c31942748..d09bec71080e12092c75da5dca3017e94c770396 100644 (file)
@@ -1135,16 +1135,14 @@ static int __cpuinit powernowk8_init(void)
 {
        unsigned int i, supported_cpus = 0;
 
-       for (i=0; i<NR_CPUS; i++) {
-               if (!cpu_online(i))
-                       continue;
+       for_each_online_cpu(i) {
                if (check_supported_cpu(i))
                        supported_cpus++;
        }
 
        if (supported_cpus == num_online_cpus()) {
-               printk(KERN_INFO PFX "Found %d AMD Athlon 64 / Opteron processors (" VERSION ")\n",
-                       supported_cpus);
+               printk(KERN_INFO PFX "Found %d AMD Athlon 64 / Opteron "
+                       "processors (" VERSION ")\n", supported_cpus);
                return cpufreq_register_driver(&cpufreq_amd64_driver);
        }