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

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

mfd: 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: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Cc: Peter Tyser <ptyser@xes-inc.com>
Cc: Daniel Walker <dwalker@fifo99.com>
Cc: Bryan Huntsman <bryanh@codeaurora.org>
Acked-by: default avatarDavid Brown <davidb@codeaurora.org>
Acked-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Acked-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b1f7c8cc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -576,7 +576,7 @@ static struct i2c_driver pm800_driver = {
		.pm = &pm80x_pm_ops,
		},
	.probe = pm800_probe,
	.remove = __devexit_p(pm800_remove),
	.remove = pm800_remove,
	.id_table = pm80x_id_table,
};

+1 −1
Original line number Diff line number Diff line
@@ -281,7 +281,7 @@ static struct i2c_driver pm805_driver = {
		.pm = &pm80x_pm_ops,
		},
	.probe = pm805_probe,
	.remove = __devexit_p(pm805_remove),
	.remove = pm805_remove,
	.id_table = pm80x_id_table,
};

+1 −1
Original line number Diff line number Diff line
@@ -1258,7 +1258,7 @@ static struct i2c_driver pm860x_driver = {
		.of_match_table	= of_match_ptr(pm860x_dt_ids),
	},
	.probe		= pm860x_probe,
	.remove		= __devexit_p(pm860x_remove),
	.remove		= pm860x_remove,
	.id_table	= pm860x_id_table,
};

+1 −1
Original line number Diff line number Diff line
@@ -986,7 +986,7 @@ static struct i2c_driver ab3100_driver = {
	},
	.id_table	= ab3100_id,
	.probe		= ab3100_probe,
	.remove		= __devexit_p(ab3100_remove),
	.remove		= ab3100_remove,
};

static int __init ab3100_i2c_init(void)
+1 −1
Original line number Diff line number Diff line
@@ -1506,7 +1506,7 @@ static struct platform_driver ab8500_core_driver = {
		.owner = THIS_MODULE,
	},
	.probe	= ab8500_probe,
	.remove	= __devexit_p(ab8500_remove),
	.remove	= ab8500_remove,
	.id_table = ab8500_id,
};

Loading