diff options
| author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:26:26 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-21 15:55:19 -0500 |
| commit | 39af33fc458543fd6daaf154e109eba22ab89a8f (patch) | |
| tree | da885ed94236d9572c214d1c0cb016f338c9f9fd /drivers/char/ipmi | |
| parent | aa89ed9e369b345ef3737c56e7c8934af2df4aa6 (diff) | |
char: remove use of __devexit
CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: David Airlie <airlied@linux.ie>
Cc: Olof Johansson <olof@lixom.net>
Cc: Mattia Dongili <malattia@linux.it>
Cc: Kent Yoder <key@linux.vnet.ibm.com>
Cc: Rajiv Andrade <mail@srajiv.net>
Cc: Marcel Selhorst <tpmdd@selhorst.net>
Cc: Sirrix AG <tpmdd@sirrix.com>
Cc: linuxppc-dev@lists.ozlabs.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: openipmi-developer@lists.sourceforge.net
Cc: platform-driver-x86@vger.kernel.org
Cc: tpmdd-devel@lists.sourceforge.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/char/ipmi')
| -rw-r--r-- | drivers/char/ipmi/ipmi_si_intf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c index e55a7ad8ef18..20ab5b3a8915 100644 --- a/drivers/char/ipmi/ipmi_si_intf.c +++ b/drivers/char/ipmi/ipmi_si_intf.c | |||
| @@ -2228,7 +2228,7 @@ err_free: | |||
| 2228 | return -EINVAL; | 2228 | return -EINVAL; |
| 2229 | } | 2229 | } |
| 2230 | 2230 | ||
| 2231 | static void __devexit ipmi_pnp_remove(struct pnp_dev *dev) | 2231 | static void ipmi_pnp_remove(struct pnp_dev *dev) |
| 2232 | { | 2232 | { |
| 2233 | struct smi_info *info = pnp_get_drvdata(dev); | 2233 | struct smi_info *info = pnp_get_drvdata(dev); |
| 2234 | 2234 | ||
| @@ -2529,7 +2529,7 @@ static int ipmi_pci_probe(struct pci_dev *pdev, | |||
| 2529 | return 0; | 2529 | return 0; |
| 2530 | } | 2530 | } |
| 2531 | 2531 | ||
| 2532 | static void __devexit ipmi_pci_remove(struct pci_dev *pdev) | 2532 | static void ipmi_pci_remove(struct pci_dev *pdev) |
| 2533 | { | 2533 | { |
| 2534 | struct smi_info *info = pci_get_drvdata(pdev); | 2534 | struct smi_info *info = pci_get_drvdata(pdev); |
| 2535 | cleanup_one_si(info); | 2535 | cleanup_one_si(info); |
| @@ -2635,7 +2635,7 @@ static int ipmi_probe(struct platform_device *dev) | |||
| 2635 | return 0; | 2635 | return 0; |
| 2636 | } | 2636 | } |
| 2637 | 2637 | ||
| 2638 | static int __devexit ipmi_remove(struct platform_device *dev) | 2638 | static int ipmi_remove(struct platform_device *dev) |
| 2639 | { | 2639 | { |
| 2640 | #ifdef CONFIG_OF | 2640 | #ifdef CONFIG_OF |
| 2641 | cleanup_one_si(dev_get_drvdata(&dev->dev)); | 2641 | cleanup_one_si(dev_get_drvdata(&dev->dev)); |
