diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 19:20:06 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-27 00:57:24 +0100 |
commit | 5f7e22283cec597e532b75d5a455ce6ed75de362 (patch) | |
tree | 54a606e0f27f6e1e02c7c1c799b845edfdbc793c /drivers/extcon/extcon-adc-jack.c | |
parent | extcon: remove use of __devinit (diff) | |
download | linux-5f7e22283cec597e532b75d5a455ce6ed75de362.tar.xz linux-5f7e22283cec597e532b75d5a455ce6ed75de362.zip |
extcon: 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 <wfp5p@virginia.edu>
Cc: MyungJoo Ham <myungjoo.ham@samsung.com>
Cc: Chanwoo Choi <cw00.choi@samsung.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 84144e6708c7..eda2a1aa4adb 100644 --- a/drivers/extcon/extcon-adc-jack.c +++ b/drivers/extcon/extcon-adc-jack.c @@ -188,7 +188,7 @@ static int adc_jack_remove(struct platform_device *pdev) static struct platform_driver adc_jack_driver = { .probe = adc_jack_probe, - .remove = __devexit_p(adc_jack_remove), + .remove = adc_jack_remove, .driver = { .name = "adc-jack", .owner = THIS_MODULE, |