]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/i386/kernel/quirks.c
Clean up E7520/7320/7525 quirk printk.
[linux-2.6-omap-h63xx.git] / arch / i386 / kernel / quirks.c
index 87ccdac84928db35706409477a86edc49ac8c736..6722469c2633841c7ad8f29fb5355e9b7df02b42 100644 (file)
@@ -1,7 +1,6 @@
 /*
  * This file contains work-arounds for x86 and x86_64 platform bugs.
  */
-#include <linux/config.h>
 #include <linux/pci.h>
 #include <linux/irq.h>
 
@@ -21,8 +20,6 @@ static void __devinit quirk_intel_irqbalance(struct pci_dev *dev)
        if (rev > 0x9)
                return;
 
-       printk(KERN_INFO "Intel E7520/7320/7525 detected.");
-
        /* enable access to config space*/
        pci_read_config_byte(dev, 0xf4, &config);
        pci_write_config_byte(dev, 0xf4, config|0x2);
@@ -31,7 +28,8 @@ static void __devinit quirk_intel_irqbalance(struct pci_dev *dev)
        raw_pci_ops->read(0, 0, 0x40, 0x4c, 2, &word);
 
        if (!(word & (1 << 13))) {
-               printk(KERN_INFO "Disabling irq balancing and affinity\n");
+               printk(KERN_INFO "Intel E7520/7320/7525 detected. "
+                       "Disabling irq balancing and affinity\n");
 #ifdef CONFIG_IRQBALANCE
                irqbalance_disable("");
 #endif