From: Bill Pemberton Date: Mon, 19 Nov 2012 18:20:56 +0000 (-0500) Subject: staging: rtl8187se: remove use of __devexit_p X-Git-Tag: next-20121205~26^2~249 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=435c78dfb8bfacbb378cb6b929c06667281be325;p=karo-tx-linux.git staging: rtl8187se: 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8187se/r8180_core.c b/drivers/staging/rtl8187se/r8180_core.c index 6a27836f989e..ca097e450642 100644 --- a/drivers/staging/rtl8187se/r8180_core.c +++ b/drivers/staging/rtl8187se/r8180_core.c @@ -149,7 +149,7 @@ static struct pci_driver rtl8180_pci_driver = { .name = RTL8180_MODULE_NAME, .id_table = rtl8180_pci_id_tbl, .probe = rtl8180_pci_probe, - .remove = __devexit_p(rtl8180_pci_remove), + .remove = rtl8180_pci_remove, .suspend = rtl8180_suspend, .resume = rtl8180_resume, .shutdown = rtl8180_shutdown,