Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 28ea73f4 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

power: remove use of __devexit_p



CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Cc: Anton Vorontsov <cbou@mail.ru>
Cc: David Woodhouse <dwmw2@infradead.org>
Acked-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e533a349
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1033,7 +1033,7 @@ static struct platform_driver pm860x_battery_driver = {
		   .pm = &pm860x_battery_pm_ops,
	},
	.probe = pm860x_battery_probe,
	.remove = __devexit_p(pm860x_battery_remove),
	.remove = pm860x_battery_remove,
};
module_platform_driver(pm860x_battery_driver);

+1 −1
Original line number Diff line number Diff line
@@ -738,7 +738,7 @@ static struct platform_driver pm860x_charger_driver = {
		   .owner = THIS_MODULE,
	},
	.probe = pm860x_charger_probe,
	.remove = __devexit_p(pm860x_charger_remove),
	.remove = pm860x_charger_remove,
};
module_platform_driver(pm860x_charger_driver);

+1 −1
Original line number Diff line number Diff line
@@ -1101,7 +1101,7 @@ static int __devinit ab8500_btemp_probe(struct platform_device *pdev)

static struct platform_driver ab8500_btemp_driver = {
	.probe = ab8500_btemp_probe,
	.remove = __devexit_p(ab8500_btemp_remove),
	.remove = ab8500_btemp_remove,
	.suspend = ab8500_btemp_suspend,
	.resume = ab8500_btemp_resume,
	.driver = {
+1 −1
Original line number Diff line number Diff line
@@ -2765,7 +2765,7 @@ static int __devinit ab8500_charger_probe(struct platform_device *pdev)

static struct platform_driver ab8500_charger_driver = {
	.probe = ab8500_charger_probe,
	.remove = __devexit_p(ab8500_charger_remove),
	.remove = ab8500_charger_remove,
	.suspend = ab8500_charger_suspend,
	.resume = ab8500_charger_resume,
	.driver = {
+1 −1
Original line number Diff line number Diff line
@@ -2614,7 +2614,7 @@ static int __devinit ab8500_fg_probe(struct platform_device *pdev)

static struct platform_driver ab8500_fg_driver = {
	.probe = ab8500_fg_probe,
	.remove = __devexit_p(ab8500_fg_remove),
	.remove = ab8500_fg_remove,
	.suspend = ab8500_fg_suspend,
	.resume = ab8500_fg_resume,
	.driver = {
Loading