1
0
Fork 0

staging: rtl8192e: 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>
wifi-calibration
Bill Pemberton 2012-11-19 13:26:45 -05:00 committed by Greg Kroah-Hartman
parent ea7e9f2a49
commit 1387b461af
1 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ MODULE_DEVICE_TABLE(pci, rtl8192_pci_id_tbl);
static int rtl8192_pci_probe(struct pci_dev *pdev,
const struct pci_device_id *id);
static void __devexit rtl8192_pci_disconnect(struct pci_dev *pdev);
static void rtl8192_pci_disconnect(struct pci_dev *pdev);
static struct pci_driver rtl8192_pci_driver = {
.name = DRV_NAME, /* Driver name */
@ -2982,7 +2982,7 @@ err_pci_disable:
return err;
}
static void __devexit rtl8192_pci_disconnect(struct pci_dev *pdev)
static void rtl8192_pci_disconnect(struct pci_dev *pdev)
{
struct net_device *dev = pci_get_drvdata(pdev);
struct r8192_priv *priv ;