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

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

clk: 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>
Acked-by: default avatarMike Turquette <mturquette@linaro.org>
Acked-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 164dce82
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -223,7 +223,7 @@ static struct platform_driver max77686_clk_driver = {
		.owner = THIS_MODULE,
	},
	.probe = max77686_clk_probe,
	.remove = __devexit_p(max77686_clk_remove),
	.remove = max77686_clk_remove,
	.id_table = max77686_clk_id,
};

+1 −1
Original line number Diff line number Diff line
@@ -412,7 +412,7 @@ static int __devexit wm831x_clk_remove(struct platform_device *pdev)

static struct platform_driver wm831x_clk_driver = {
	.probe = wm831x_clk_probe,
	.remove = __devexit_p(wm831x_clk_remove),
	.remove = wm831x_clk_remove,
	.driver		= {
		.name	= "wm831x-clk",
		.owner	= THIS_MODULE,