From: Bill Pemberton Date: Mon, 19 Nov 2012 18:21:00 +0000 (-0500) Subject: staging: sm7xxfb: remove use of __devexit_p X-Git-Tag: next-20121205~26^2~212 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=38de09a975ec957a616899b11d7bc089071dcb19;p=karo-tx-linux.git staging: sm7xxfb: 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/sm7xxfb/sm7xxfb.c b/drivers/staging/sm7xxfb/sm7xxfb.c index f27182d4dea6..5272ba94a790 100644 --- a/drivers/staging/sm7xxfb/sm7xxfb.c +++ b/drivers/staging/sm7xxfb/sm7xxfb.c @@ -1027,7 +1027,7 @@ static struct pci_driver smtcfb_driver = { .name = "smtcfb", .id_table = smtcfb_pci_table, .probe = smtcfb_pci_probe, - .remove = __devexit_p(smtcfb_pci_remove), + .remove = smtcfb_pci_remove, .driver.pm = SM7XX_PM_OPS, };