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/pxa3xx_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/pxa3xx_nand.c')
-rw-r--r-- | drivers/mtd/nand/pxa3xx_nand.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/mtd/nand/pxa3xx_nand.c b/drivers/mtd/nand/pxa3xx_nand.c index 9eb7f879969e..90d60169ae40 100644 --- a/drivers/mtd/nand/pxa3xx_nand.c +++ b/drivers/mtd/nand/pxa3xx_nand.c | |||
@@ -1311,17 +1311,7 @@ static struct platform_driver pxa3xx_nand_driver = { | |||
1311 | .resume = pxa3xx_nand_resume, | 1311 | .resume = pxa3xx_nand_resume, |
1312 | }; | 1312 | }; |
1313 | 1313 | ||
1314 | static int __init pxa3xx_nand_init(void) | 1314 | module_platform_driver(pxa3xx_nand_driver); |
1315 | { | ||
1316 | return platform_driver_register(&pxa3xx_nand_driver); | ||
1317 | } | ||
1318 | module_init(pxa3xx_nand_init); | ||
1319 | |||
1320 | static void __exit pxa3xx_nand_exit(void) | ||
1321 | { | ||
1322 | platform_driver_unregister(&pxa3xx_nand_driver); | ||
1323 | } | ||
1324 | module_exit(pxa3xx_nand_exit); | ||
1325 | 1315 | ||
1326 | MODULE_LICENSE("GPL"); | 1316 | MODULE_LICENSE("GPL"); |
1327 | MODULE_DESCRIPTION("PXA3xx NAND controller driver"); | 1317 | MODULE_DESCRIPTION("PXA3xx NAND controller driver"); |