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

Commit b3a08945 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Grant Likely
Browse files

spi/mpc8xxx: don't use __exit_p to wrap plat_mpc8xxx_spi_remove



The function plat_mpc8xxx_spi_remove is defined using __devexit, so don't
use __exit_p but __devexit_p to wrap it.

Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarGrant Likely <grant.likely@secretlab.ca>
parent bbd050af
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -900,7 +900,7 @@ static int __devexit plat_mpc8xxx_spi_remove(struct platform_device *pdev)
MODULE_ALIAS("platform:mpc8xxx_spi");
static struct platform_driver mpc8xxx_spi_driver = {
	.probe = plat_mpc8xxx_spi_probe,
	.remove = __exit_p(plat_mpc8xxx_spi_remove),
	.remove = __devexit_p(plat_mpc8xxx_spi_remove),
	.driver = {
		.name = "mpc8xxx_spi",
		.owner = THIS_MODULE,