dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Bill Pemberton 2012-11-19 13:26:54 -05:00 committed by Greg Kroah-Hartman
parent cea69a149a
commit a1fc9d87a1
1 changed files with 2 additions and 2 deletions

View File

@ -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;
/*------------------------------------------------------------------------*/