summaryrefslogtreecommitdiff
path: root/drivers/staging/wlags49_h2/wl_pci.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-11-19 18:26:54 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-11-21 21:54:04 (GMT)
commita1fc9d87a1061299950a0dc9dac595ab6293ff13 (patch)
tree30280eaf6bc1aabf1e87406d3705d6b2853adceb /drivers/staging/wlags49_h2/wl_pci.c
parentcea69a149a496da70a6b66c5ed988043aabaae3a (diff)
downloadlinux-fsl-qoriq-a1fc9d87a1061299950a0dc9dac595ab6293ff13.tar.xz
staging: wlags49_h2: remove use of __devexit
CONFIG_HOTPLUG is going away as an option so __devexit is no longer needed. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wlags49_h2/wl_pci.c')
-rw-r--r--drivers/staging/wlags49_h2/wl_pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wlags49_h2/wl_pci.c b/drivers/staging/wlags49_h2/wl_pci.c
index 38bb63c..6226e5e 100644
--- a/drivers/staging/wlags49_h2/wl_pci.c
+++ b/drivers/staging/wlags49_h2/wl_pci.c
@@ -126,7 +126,7 @@ MODULE_DEVICE_TABLE(pci, wl_pci_tbl);
******************************************************************************/
int wl_pci_probe( struct pci_dev *pdev,
const struct pci_device_id *ent );
-void __devexit wl_pci_remove(struct pci_dev *pdev);
+void wl_pci_remove(struct pci_dev *pdev);
int wl_pci_setup( struct pci_dev *pdev );
void wl_pci_enable_cardbus_interrupts( struct pci_dev *pdev );
@@ -435,7 +435,7 @@ int wl_pci_probe( struct pci_dev *pdev,
* N/A
*
******************************************************************************/
-void __devexit wl_pci_remove(struct pci_dev *pdev)
+void wl_pci_remove(struct pci_dev *pdev)
{
struct net_device *dev = NULL;
/*------------------------------------------------------------------------*/