diff options
author | Bill Pemberton <[email protected]> | 2012-11-19 13:21:23 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2012-11-21 12:49:50 -0800 |
commit | 2d6bed9ca93e98685bc5038d686984fd449cd978 (patch) | |
tree | 8891b65ede778319ebb28c2aa40162a61994d852 /drivers/misc/ibmasm/module.c | |
parent | 989623c7d687d3996d5676a6e1474dc7f01bf158 (diff) |
drivers/misc: 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 <[email protected]>
Cc: "Michał Mirosław" <[email protected]>
Cc: Wolfram Sang <[email protected]>
Cc: Eric Piel <[email protected]>
Cc: Jiri Slaby <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/misc/ibmasm/module.c')
-rw-r--r-- | drivers/misc/ibmasm/module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/ibmasm/module.c b/drivers/misc/ibmasm/module.c index 168d8008f460..f34a92fd679b 100644 --- a/drivers/misc/ibmasm/module.c +++ b/drivers/misc/ibmasm/module.c @@ -198,7 +198,7 @@ static struct pci_driver ibmasm_driver = { .name = DRIVER_NAME, .id_table = ibmasm_pci_table, .probe = ibmasm_init_one, - .remove = __devexit_p(ibmasm_remove_one), + .remove = ibmasm_remove_one, }; static void __exit ibmasm_exit (void) |