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

Commit 9fdca9df authored by Felipe Balbi's avatar Felipe Balbi Committed by Shubhrajyoti D
Browse files

spi: omap2-mcspi: convert to module_platform_driver



this will delete a few lines of code, no functional
changes.

Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
Signed-off-by: default avatarShubhrajyoti D <shubhrajyoti@ti.com>
parent 7d6b6d83
Loading
Loading
Loading
Loading
+1 −14
Original line number Diff line number Diff line
@@ -1291,18 +1291,5 @@ static struct platform_driver omap2_mcspi_driver = {
	.remove =	__devexit_p(omap2_mcspi_remove),
};


static int __init omap2_mcspi_init(void)
{
	return platform_driver_register(&omap2_mcspi_driver);
}
subsys_initcall(omap2_mcspi_init);

static void __exit omap2_mcspi_exit(void)
{
	platform_driver_unregister(&omap2_mcspi_driver);

}
module_exit(omap2_mcspi_exit);

module_platform_driver(omap2_mcspi_driver);
MODULE_LICENSE("GPL");