mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 10:44:14 +08:00
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
@ -1614,19 +1614,7 @@ static struct platform_driver mmc_omap_driver = {
|
||||
},
|
||||
};
|
||||
|
||||
static int __init mmc_omap_init(void)
|
||||
{
|
||||
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_platform_driver(mmc_omap_driver);
|
||||
MODULE_DESCRIPTION("OMAP Multimedia Card driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_ALIAS("platform:" DRIVER_NAME);
|
||||
|
Loading…
Reference in New Issue
Block a user