diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:20:40 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 14:43:22 -0500 |
commit | 28ea73f4c67cb3dd8c972b21d9fdf84ea78d6daa (patch) | |
tree | 36940d50c00ec43a6d7dafc8fd27429601168fb7 /drivers/power/max17040_battery.c | |
parent | e533a349c0258f38a67afa1c2402a12f46227049 (diff) |
power: 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: Anton Vorontsov <cbou@mail.ru>
Cc: David Woodhouse <dwmw2@infradead.org>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/power/max17040_battery.c')
-rw-r--r-- | drivers/power/max17040_battery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/max17040_battery.c b/drivers/power/max17040_battery.c index 58e67830143c..fcc712e8aaeb 100644 --- a/drivers/power/max17040_battery.c +++ b/drivers/power/max17040_battery.c | |||
@@ -285,7 +285,7 @@ static struct i2c_driver max17040_i2c_driver = { | |||
285 | .name = "max17040", | 285 | .name = "max17040", |
286 | }, | 286 | }, |
287 | .probe = max17040_probe, | 287 | .probe = max17040_probe, |
288 | .remove = __devexit_p(max17040_remove), | 288 | .remove = max17040_remove, |
289 | .suspend = max17040_suspend, | 289 | .suspend = max17040_suspend, |
290 | .resume = max17040_resume, | 290 | .resume = max17040_resume, |
291 | .id_table = max17040_id, | 291 | .id_table = max17040_id, |