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/pd6729.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/pd6729.c')
-rw-r--r-- | drivers/pcmcia/pd6729.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pcmcia/pd6729.c b/drivers/pcmcia/pd6729.c index 253e3867dec7..aa79c0cc6dcf 100644 --- a/drivers/pcmcia/pd6729.c +++ b/drivers/pcmcia/pd6729.c | |||
@@ -772,7 +772,7 @@ static struct pci_driver pd6729_pci_driver = { | |||
772 | .name = "pd6729", | 772 | .name = "pd6729", |
773 | .id_table = pd6729_pci_ids, | 773 | .id_table = pd6729_pci_ids, |
774 | .probe = pd6729_pci_probe, | 774 | .probe = pd6729_pci_probe, |
775 | .remove = __devexit_p(pd6729_pci_remove), | 775 | .remove = pd6729_pci_remove, |
776 | }; | 776 | }; |
777 | 777 | ||
778 | static int pd6729_module_init(void) | 778 | static int pd6729_module_init(void) |