mtd: convert drivers/mtd/* to use module_platform_driver()
This patch converts the drivers in drivers/mtd/* to use the module_platform_driver() macro which makes the code smaller and a bit simpler. Signed-off-by: Axel Lin <axel.lin@gmail.com> Acked by: Haojian Zhuang <haojian.zhuang@gmail.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:

committed by
David Woodhouse

parent
1f9327fcff
commit
f99640dee2
@@ -533,18 +533,7 @@ static struct platform_driver tmio_driver = {
|
||||
.resume = tmio_resume,
|
||||
};
|
||||
|
||||
static int __init tmio_init(void)
|
||||
{
|
||||
return platform_driver_register(&tmio_driver);
|
||||
}
|
||||
|
||||
static void __exit tmio_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&tmio_driver);
|
||||
}
|
||||
|
||||
module_init(tmio_init);
|
||||
module_exit(tmio_exit);
|
||||
module_platform_driver(tmio_driver);
|
||||
|
||||
MODULE_LICENSE("GPL v2");
|
||||
MODULE_AUTHOR("Ian Molton, Dirk Opfer, Chris Humbert, Dmitry Baryshkov");
|
||||
|
Reference in New Issue
Block a user