Some motherboards don't implement MSI correctly. The driver handles this but the warning is too verbose and overly cautious.
Signed-off-by: Stephe Hemminger <[EMAIL PROTECTED]> --- sky2.orig/drivers/net/sky2.c 2006-10-11 11:43:08.000000000 -0700 +++ sky2/drivers/net/sky2.c 2006-10-11 11:43:33.000000000 -0700 @@ -3326,9 +3326,8 @@ if (!hw->msi_detected) { /* MSI test failed, go back to INTx mode */ - printk(KERN_WARNING PFX "%s: No interrupt was generated using MSI, " - "switching to INTx mode. Please report this failure to " - "the PCI maintainer and include system chipset information.\n", + printk(KERN_INFO PFX "%s: No interrupt generated using MSI, " + "switching to INTx mode.\n", pci_name(pdev)); err = -EOPNOTSUPP; @@ -3336,6 +3335,7 @@ } sky2_write32(hw, B0_IMSK, 0); + sky2_read32(hw, B0_IMSK); free_irq(pdev->irq, hw); -- Stephen Hemminger <[EMAIL PROTECTED]> - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html