Merge to Fedora kernel-2.6.6-1.422
[linux-2.6.git] / arch / x86_64 / kernel / mpparse.c
index 7dcc1b5..27122be 100644 (file)
@@ -575,7 +575,6 @@ static int __init smp_scan_config (unsigned long base, unsigned long length)
        extern void __bad_mpf_size(void); 
        unsigned int *bp = phys_to_virt(base);
        struct intel_mp_floating *mpf;
-       static int printed __initdata; 
 
        Dprintk("Scan SMP from %p for %ld bytes.\n", bp,length);
        if (sizeof(*mpf) != 16)
@@ -599,10 +598,7 @@ static int __init smp_scan_config (unsigned long base, unsigned long length)
                bp += 4;
                length -= 16;
        }
-       if (!printed) {         
-               printk(KERN_INFO "No mptable found.\n");
-               printed = 1;
-       }
+       printk(KERN_INFO "No mptable found.\n");
        return 0;
 }