Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e72ba2d3 authored by John W. Linville's avatar John W. Linville Committed by Jeff Garzik
Browse files

[PATCH] prism54: correct overly aggressive check of return from pci_set_mwi



Failure of pci_set_mwi should not be considered a fatal error.

Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent b6d2b1db
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -170,8 +170,8 @@ prism54_probe(struct pci_dev *pdev, const struct pci_device_id *id)
	pci_set_master(pdev);

	/* enable MWI */
	if (pci_set_mwi(pdev))
		goto do_pci_release_regions;
	if (!pci_set_mwi(pdev))
		printk(KERN_INFO "%s: pci_set_mwi(pdev) succeeded\n", DRV_NAME);

	/* setup the network device interface and its structure */
	if (!(ndev = islpci_setup(pdev))) {