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/abx500_chargalg.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/abx500_chargalg.c')
-rw-r--r-- | drivers/power/abx500_chargalg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/abx500_chargalg.c b/drivers/power/abx500_chargalg.c index 4d302803ffcc..6ed6b88f1fa8 100644 --- a/drivers/power/abx500_chargalg.c +++ b/drivers/power/abx500_chargalg.c | |||
@@ -1893,7 +1893,7 @@ free_device_info: | |||
1893 | 1893 | ||
1894 | static struct platform_driver abx500_chargalg_driver = { | 1894 | static struct platform_driver abx500_chargalg_driver = { |
1895 | .probe = abx500_chargalg_probe, | 1895 | .probe = abx500_chargalg_probe, |
1896 | .remove = __devexit_p(abx500_chargalg_remove), | 1896 | .remove = abx500_chargalg_remove, |
1897 | .suspend = abx500_chargalg_suspend, | 1897 | .suspend = abx500_chargalg_suspend, |
1898 | .resume = abx500_chargalg_resume, | 1898 | .resume = abx500_chargalg_resume, |
1899 | .driver = { | 1899 | .driver = { |