diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 22:20:06 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-27 03:57:24 +0400 |
commit | 5f7e22283cec597e532b75d5a455ce6ed75de362 (patch) | |
tree | 54a606e0f27f6e1e02c7c1c799b845edfdbc793c /drivers/extcon/extcon-max8997.c | |
parent | 44f34fd4a7f80439f14bdd2df032b0b4427c4ab0 (diff) | |
download | linux-5f7e22283cec597e532b75d5a455ce6ed75de362.tar.xz |
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-max8997.c')
-rw-r--r-- | drivers/extcon/extcon-max8997.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-max8997.c b/drivers/extcon/extcon-max8997.c index 49812991c5e6..bad76f51161b 100644 --- a/drivers/extcon/extcon-max8997.c +++ b/drivers/extcon/extcon-max8997.c @@ -531,7 +531,7 @@ static struct platform_driver max8997_muic_driver = { .owner = THIS_MODULE, }, .probe = max8997_muic_probe, - .remove = __devexit_p(max8997_muic_remove), + .remove = max8997_muic_remove, }; module_platform_driver(max8997_muic_driver); |