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/xilinx_hwicap | |
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/xilinx_hwicap')
-rw-r--r-- | drivers/char/xilinx_hwicap/xilinx_hwicap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/xilinx_hwicap/xilinx_hwicap.c b/drivers/char/xilinx_hwicap/xilinx_hwicap.c index d10085f9a0de..5224da5202d3 100644 --- a/drivers/char/xilinx_hwicap/xilinx_hwicap.c +++ b/drivers/char/xilinx_hwicap/xilinx_hwicap.c | |||
@@ -717,7 +717,7 @@ static struct hwicap_driver_config fifo_icap_config = { | |||
717 | .reset = fifo_icap_reset, | 717 | .reset = fifo_icap_reset, |
718 | }; | 718 | }; |
719 | 719 | ||
720 | static int __devexit hwicap_remove(struct device *dev) | 720 | static int hwicap_remove(struct device *dev) |
721 | { | 721 | { |
722 | struct hwicap_drvdata *drvdata; | 722 | struct hwicap_drvdata *drvdata; |
723 | 723 | ||
@@ -822,7 +822,7 @@ static int hwicap_drv_probe(struct platform_device *pdev) | |||
822 | &buffer_icap_config, regs); | 822 | &buffer_icap_config, regs); |
823 | } | 823 | } |
824 | 824 | ||
825 | static int __devexit hwicap_drv_remove(struct platform_device *pdev) | 825 | static int hwicap_drv_remove(struct platform_device *pdev) |
826 | { | 826 | { |
827 | return hwicap_remove(&pdev->dev); | 827 | return hwicap_remove(&pdev->dev); |
828 | } | 828 | } |