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

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

pwm: 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 avatarThierry Reding <thierry.reding@avionic-design.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4740f73f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ static struct platform_driver ab8500_pwm_driver = {
		.owner = THIS_MODULE,
	},
	.probe = ab8500_pwm_probe,
	.remove = __devexit_p(ab8500_pwm_remove),
	.remove = ab8500_pwm_remove,
};
module_platform_driver(ab8500_pwm_driver);

+1 −1
Original line number Diff line number Diff line
@@ -151,7 +151,7 @@ static struct platform_driver bfin_pwm_driver = {
		.name = "bfin-pwm",
	},
	.probe = bfin_pwm_probe,
	.remove = __devexit_p(bfin_pwm_remove),
	.remove = bfin_pwm_remove,
};

module_platform_driver(bfin_pwm_driver);
+1 −1
Original line number Diff line number Diff line
@@ -307,7 +307,7 @@ static struct platform_driver imx_pwm_driver = {
		.of_match_table = of_match_ptr(imx_pwm_dt_ids),
	},
	.probe		= imx_pwm_probe,
	.remove		= __devexit_p(imx_pwm_remove),
	.remove		= imx_pwm_remove,
};

module_platform_driver(imx_pwm_driver);
+1 −1
Original line number Diff line number Diff line
@@ -211,7 +211,7 @@ static struct platform_driver jz4740_pwm_driver = {
		.owner = THIS_MODULE,
	},
	.probe = jz4740_pwm_probe,
	.remove = __devexit_p(jz4740_pwm_remove),
	.remove = jz4740_pwm_remove,
};
module_platform_driver(jz4740_pwm_driver);

+1 −1
Original line number Diff line number Diff line
@@ -138,7 +138,7 @@ static struct platform_driver lpc32xx_pwm_driver = {
		.of_match_table = of_match_ptr(lpc32xx_pwm_dt_ids),
	},
	.probe = lpc32xx_pwm_probe,
	.remove = __devexit_p(lpc32xx_pwm_remove),
	.remove = lpc32xx_pwm_remove,
};
module_platform_driver(lpc32xx_pwm_driver);

Loading