Skip to content

Commit

Permalink
sky2: MSI test is only a warning
Browse files Browse the repository at this point in the history
Some motherboards don't implement MSI correctly. The driver handles this
but the warning is too verbose and overly cautious.

Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
  • Loading branch information
Stephen Hemminger committed Oct 17, 2006
1 parent 43f8221 commit 2bffc23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/net/sky2.c
Original file line number Diff line number Diff line change
Expand Up @@ -3326,16 +3326,16 @@ static int __devinit sky2_test_msi(struct sky2_hw *hw)

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;
sky2_write8(hw, B0_CTST, CS_CL_SW_IRQ);
}

sky2_write32(hw, B0_IMSK, 0);
sky2_read32(hw, B0_IMSK);

free_irq(pdev->irq, hw);

Expand Down

0 comments on commit 2bffc23

Please sign in to comment.