Commit ea7e9f2a authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

staging: rtl8187se: remove use of __devexit

CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.
Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 83f5789c
......@@ -77,7 +77,7 @@ MODULE_PARM_DESC(hwwep, " Try to use hardware WEP support. Still broken and not
static int rtl8180_pci_probe(struct pci_dev *pdev,
const struct pci_device_id *id);
static void __devexit rtl8180_pci_remove(struct pci_dev *pdev);
static void rtl8180_pci_remove(struct pci_dev *pdev);
static void rtl8180_shutdown(struct pci_dev *pdev)
{
......@@ -3288,7 +3288,7 @@ static int rtl8180_pci_probe(struct pci_dev *pdev,
return ret;
}
static void __devexit rtl8180_pci_remove(struct pci_dev *pdev)
static void rtl8180_pci_remove(struct pci_dev *pdev)
{
struct r8180_priv *priv;
struct net_device *dev = pci_get_drvdata(pdev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment