diff options
author | Bill Pemberton <[email protected]> | 2012-11-19 13:26:02 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2012-11-21 12:53:32 -0800 |
commit | 486a5c28c2e7d6a80c393ac7d612b77d80447b84 (patch) | |
tree | ef3c552ad9e9c86606ecc8be4220065d8f39eb1b /drivers/misc/ibmasm/module.c | |
parent | b328bfec519875851c4b3d95cd22371aad0a657e (diff) |
misc: remove use of __devexit
CONFIG_HOTPLUG is going away as an option so __devexit 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 380e4298ada1..0346d87c5fed 100644 --- a/drivers/misc/ibmasm/module.c +++ b/drivers/misc/ibmasm/module.c @@ -163,7 +163,7 @@ error_resources: return result; } -static void __devexit ibmasm_remove_one(struct pci_dev *pdev) +static void ibmasm_remove_one(struct pci_dev *pdev) { struct service_processor *sp = (struct service_processor *)pci_get_drvdata(pdev); |