diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:20:38 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 15:10:16 -0500 |
commit | 96364e3a5cf1416c158a276134d9a4fc861548c2 (patch) | |
tree | 98170aa6b3ff2e6d34bf5fdcaa26359791a3a61d /drivers/pcmcia/yenta_socket.c | |
parent | 13ee2b943c366fc899c860b1aef1c8a2b7a0e546 (diff) |
pcmcia: 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/pcmcia/yenta_socket.c')
-rw-r--r-- | drivers/pcmcia/yenta_socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pcmcia/yenta_socket.c b/drivers/pcmcia/yenta_socket.c index 667678db1153..407f403800ea 100644 --- a/drivers/pcmcia/yenta_socket.c +++ b/drivers/pcmcia/yenta_socket.c | |||
@@ -1435,7 +1435,7 @@ static struct pci_driver yenta_cardbus_driver = { | |||
1435 | .name = "yenta_cardbus", | 1435 | .name = "yenta_cardbus", |
1436 | .id_table = yenta_table, | 1436 | .id_table = yenta_table, |
1437 | .probe = yenta_probe, | 1437 | .probe = yenta_probe, |
1438 | .remove = __devexit_p(yenta_close), | 1438 | .remove = yenta_close, |
1439 | .driver.pm = YENTA_PM_OPS, | 1439 | .driver.pm = YENTA_PM_OPS, |
1440 | }; | 1440 | }; |
1441 | 1441 | ||