mmc: omap: convert to module_platform_driver
Get rid of boilerplate code by using module_platform_driver macro, no functional changes. Signed-off-by: Venkatraman S <svenkatr@ti.com> Acked-by: Balaji T K <balajitk@ti.com> Signed-off-by: Chris Ball <cjb@laptop.org>
This commit is contained in:
parent
b6e0703bbf
commit
680f1b5b21
1 changed files with 1 additions and 13 deletions
|
@ -1614,19 +1614,7 @@ static struct platform_driver mmc_omap_driver = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init mmc_omap_init(void)
|
module_platform_driver(mmc_omap_driver);
|
||||||
{
|
|
||||||
return platform_driver_register(&mmc_omap_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void __exit mmc_omap_exit(void)
|
|
||||||
{
|
|
||||||
platform_driver_unregister(&mmc_omap_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
module_init(mmc_omap_init);
|
|
||||||
module_exit(mmc_omap_exit);
|
|
||||||
|
|
||||||
MODULE_DESCRIPTION("OMAP Multimedia Card driver");
|
MODULE_DESCRIPTION("OMAP Multimedia Card driver");
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
MODULE_ALIAS("platform:" DRIVER_NAME);
|
MODULE_ALIAS("platform:" DRIVER_NAME);
|
||||||
|
|
Loading…
Add table
Reference in a new issue