diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:20:58 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-21 14:07:42 -0800 |
commit | c08561c5cffa7053aeb47aac6d39bb1fa38f0248 (patch) | |
tree | 6d02273614ab3a9f84f7b5a690a65a0bc0ab9d12 /drivers/staging/rtl8192e | |
parent | 435c78dfb8bfacbb378cb6b929c06667281be325 (diff) | |
download | blackbird-obmc-linux-c08561c5cffa7053aeb47aac6d39bb1fa38f0248.tar.gz blackbird-obmc-linux-c08561c5cffa7053aeb47aac6d39bb1fa38f0248.zip |
staging: rtl8192e: remove use of __devexit_p
CONFIG_HOTPLUG is going away as an option so __devexit_p 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/rtl8192e')
-rw-r--r-- | drivers/staging/rtl8192e/rtl8192e/rtl_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c index f68df241f78e..3d636c345740 100644 --- a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c +++ b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c @@ -99,7 +99,7 @@ static struct pci_driver rtl8192_pci_driver = { .name = DRV_NAME, /* Driver name */ .id_table = rtl8192_pci_id_tbl, /* PCI_ID table */ .probe = rtl8192_pci_probe, /* probe fn */ - .remove = __devexit_p(rtl8192_pci_disconnect), /* remove fn */ + .remove = rtl8192_pci_disconnect, /* remove fn */ .suspend = rtl8192E_suspend, /* PM suspend fn */ .resume = rtl8192E_resume, /* PM resume fn */ }; |