* [PATCH] compat: simplify pci_try_set_mwi
@ 2010-12-22 20:37 Johannes Berg
0 siblings, 0 replies; only message in thread
From: Johannes Berg @ 2010-12-22 20:37 UTC (permalink / raw)
To: Luis R. Rodriguez; +Cc: linux-wireless@vger.kernel.org
From: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
---
compat/compat-2.6.23.c | 13 ++++---------
1 files changed, 4 insertions(+), 9 deletions(-)
diff --git a/compat/compat-2.6.23.c b/compat/compat-2.6.23.c
index 87f2a8c..67d0075 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);
--
1.7.2.3
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2010-12-22 20:37 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-22 20:37 [PATCH] compat: simplify pci_try_set_mwi Johannes Berg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox