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/ams-delta.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/ams-delta.c')
-rw-r--r-- | drivers/mtd/nand/ams-delta.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/mtd/nand/ams-delta.c b/drivers/mtd/nand/ams-delta.c index 9e6b498c9beb..3197e9764fcd 100644 --- a/drivers/mtd/nand/ams-delta.c +++ b/drivers/mtd/nand/ams-delta.c | |||
@@ -280,17 +280,7 @@ static struct platform_driver ams_delta_nand_driver = { | |||
280 | }, | 280 | }, |
281 | }; | 281 | }; |
282 | 282 | ||
283 | static int __init ams_delta_nand_init(void) | 283 | module_platform_driver(ams_delta_nand_driver); |
284 | { | ||
285 | return platform_driver_register(&ams_delta_nand_driver); | ||
286 | } | ||
287 | module_init(ams_delta_nand_init); | ||
288 | |||
289 | static void __exit ams_delta_nand_exit(void) | ||
290 | { | ||
291 | platform_driver_unregister(&ams_delta_nand_driver); | ||
292 | } | ||
293 | module_exit(ams_delta_nand_exit); | ||
294 | 284 | ||
295 | MODULE_LICENSE("GPL"); | 285 | MODULE_LICENSE("GPL"); |
296 | MODULE_AUTHOR("Jonathan McDowell <noodles@earth.li>"); | 286 | MODULE_AUTHOR("Jonathan McDowell <noodles@earth.li>"); |