diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-11-27 07:45:03 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-01-09 13:12:35 -0500 |
commit | f99640dee209df4730f35a28b02693affd571ad5 (patch) | |
tree | e09afc21f8fe3616af01bb23f5ae1b08b9290873 /drivers/mtd/nand/tmio_nand.c | |
parent | 1f9327fcffdac27e7b100b3a392291a7b94c97fd (diff) |
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>
Diffstat (limited to 'drivers/mtd/nand/tmio_nand.c')
-rw-r--r-- | drivers/mtd/nand/tmio_nand.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/mtd/nand/tmio_nand.c b/drivers/mtd/nand/tmio_nand.c index beebd95f7690..6caa0cd9d6a7 100644 --- a/drivers/mtd/nand/tmio_nand.c +++ b/drivers/mtd/nand/tmio_nand.c | |||
@@ -533,18 +533,7 @@ static struct platform_driver tmio_driver = { | |||
533 | .resume = tmio_resume, | 533 | .resume = tmio_resume, |
534 | }; | 534 | }; |
535 | 535 | ||
536 | static int __init tmio_init(void) | 536 | module_platform_driver(tmio_driver); |
537 | { | ||
538 | return platform_driver_register(&tmio_driver); | ||
539 | } | ||
540 | |||
541 | static void __exit tmio_exit(void) | ||
542 | { | ||
543 | platform_driver_unregister(&tmio_driver); | ||
544 | } | ||
545 | |||
546 | module_init(tmio_init); | ||
547 | module_exit(tmio_exit); | ||
548 | 537 | ||
549 | MODULE_LICENSE("GPL v2"); | 538 | MODULE_LICENSE("GPL v2"); |
550 | MODULE_AUTHOR("Ian Molton, Dirk Opfer, Chris Humbert, Dmitry Baryshkov"); | 539 | MODULE_AUTHOR("Ian Molton, Dirk Opfer, Chris Humbert, Dmitry Baryshkov"); |