Skip to content

Commit

Permalink
staging: wlags49_h2: remove use of __devexit
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Nov 21, 2012
1 parent cea69a1 commit a1fc9d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/wlags49_h2/wl_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 );

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

0 comments on commit a1fc9d8

Please sign in to comment.