From: Johannes Berg Date: Wed, 22 Dec 2010 20:37:20 +0000 (+0100) Subject: Signed-off-by: Johannes Berg X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=a313802fd5ebf370447e36f551e9b662e3cfe333;p=openwrt%2Fstaging%2Fblogic.git Signed-off-by: Johannes Berg --- diff --git a/compat/compat-2.6.23.c b/compat/compat-2.6.23.c index 87f2a8c84023..67d0075072ab 100644 --- a/compat/compat-2.6.23.c +++ b/compat/compat-2.6.23.c @@ -217,14 +217,6 @@ void __dev_set_rx_mode(struct net_device *dev) dev->set_multicast_list(dev); } -#ifndef HAVE_PCI_SET_MWI -int pci_try_set_mwi(struct pci_dev *dev) -{ - return 0; -} -EXPORT_SYMBOL(pci_try_set_mwi); -#else - /** * pci_try_set_mwi - enables memory-write-invalidate PCI transaction * @dev: the PCI device for which MWI is enabled @@ -236,7 +228,10 @@ EXPORT_SYMBOL(pci_try_set_mwi); */ int pci_try_set_mwi(struct pci_dev *dev) { - int rc = pci_set_mwi(dev); + int rc = 0; +#ifdef HAVE_PCI_SET_MWI + rc = pci_set_mwi(dev); +#endif return rc; } EXPORT_SYMBOL(pci_try_set_mwi);