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

Commit 5eb9f2b9 authored by Bill Pemberton's avatar Bill Pemberton Committed by Mark Brown
Browse files

regulator: 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>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent f86221d2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -481,7 +481,7 @@ static struct platform_driver pm8607_regulator_driver = {
		.owner	= THIS_MODULE,
	},
	.probe		= pm8607_regulator_probe,
	.remove		= __devexit_p(pm8607_regulator_remove),
	.remove		= pm8607_regulator_remove,
	.id_table	= pm8607_regulator_driver_ids,
};

+1 −1
Original line number Diff line number Diff line
@@ -201,7 +201,7 @@ static struct platform_driver aat2870_regulator_driver = {
		.owner	= THIS_MODULE,
	},
	.probe	= aat2870_regulator_probe,
	.remove	= __devexit_p(aat2870_regulator_remove),
	.remove	= aat2870_regulator_remove,
};

static int __init aat2870_regulator_init(void)
+1 −1
Original line number Diff line number Diff line
@@ -589,7 +589,7 @@ static struct platform_driver ab3100_regulators_driver = {
		.owner = THIS_MODULE,
	},
	.probe = ab3100_regulators_probe,
	.remove = __devexit_p(ab3100_regulators_remove),
	.remove = ab3100_regulators_remove,
};

static __init int ab3100_regulators_init(void)
+1 −1
Original line number Diff line number Diff line
@@ -836,7 +836,7 @@ static __devexit int ab8500_regulator_remove(struct platform_device *pdev)

static struct platform_driver ab8500_regulator_driver = {
	.probe = ab8500_regulator_probe,
	.remove = __devexit_p(ab8500_regulator_remove),
	.remove = ab8500_regulator_remove,
	.driver         = {
		.name   = "ab8500-regulator",
		.owner  = THIS_MODULE,
+1 −1
Original line number Diff line number Diff line
@@ -266,7 +266,7 @@ static int __devexit ad5398_remove(struct i2c_client *client)

static struct i2c_driver ad5398_driver = {
	.probe = ad5398_probe,
	.remove = __devexit_p(ad5398_remove),
	.remove = ad5398_remove,
	.driver		= {
		.name	= "ad5398",
	},
Loading