diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 19:25:49 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-27 00:57:24 +0100 |
commit | 93ed0327808f7d7ef0fc90114c3457629dd683c1 (patch) | |
tree | 1d14b8c2d536a9d50968f7bacb8d29546ae214b6 /drivers/extcon/extcon-adc-jack.c | |
parent | drivers: uio: Only allocate new private data when probing device tree node (diff) | |
download | linux-93ed0327808f7d7ef0fc90114c3457629dd683c1.tar.xz linux-93ed0327808f7d7ef0fc90114c3457629dd683c1.zip |
extcon: 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: MyungJoo Ham <myungjoo.ham@samsung.com>
Cc: Chanwoo Choi <cw00.choi@samsung.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/extcon/extcon-adc-jack.c')
-rw-r--r-- | drivers/extcon/extcon-adc-jack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-adc-jack.c b/drivers/extcon/extcon-adc-jack.c index e87196f6d2d2..b88ae918a262 100644 --- a/drivers/extcon/extcon-adc-jack.c +++ b/drivers/extcon/extcon-adc-jack.c @@ -175,7 +175,7 @@ out: return err; } -static int __devexit adc_jack_remove(struct platform_device *pdev) +static int adc_jack_remove(struct platform_device *pdev) { struct adc_jack_data *data = platform_get_drvdata(pdev); |