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/mpc5121_nfc.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/mpc5121_nfc.c')
-rw-r--r-- | drivers/mtd/nand/mpc5121_nfc.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/mtd/nand/mpc5121_nfc.c b/drivers/mtd/nand/mpc5121_nfc.c index 5ede64706346..c240cf1af961 100644 --- a/drivers/mtd/nand/mpc5121_nfc.c +++ b/drivers/mtd/nand/mpc5121_nfc.c | |||
@@ -879,19 +879,7 @@ static struct platform_driver mpc5121_nfc_driver = { | |||
879 | }, | 879 | }, |
880 | }; | 880 | }; |
881 | 881 | ||
882 | static int __init mpc5121_nfc_init(void) | 882 | module_platform_driver(mpc5121_nfc_driver); |
883 | { | ||
884 | return platform_driver_register(&mpc5121_nfc_driver); | ||
885 | } | ||
886 | |||
887 | module_init(mpc5121_nfc_init); | ||
888 | |||
889 | static void __exit mpc5121_nfc_cleanup(void) | ||
890 | { | ||
891 | platform_driver_unregister(&mpc5121_nfc_driver); | ||
892 | } | ||
893 | |||
894 | module_exit(mpc5121_nfc_cleanup); | ||
895 | 883 | ||
896 | MODULE_AUTHOR("Freescale Semiconductor, Inc."); | 884 | MODULE_AUTHOR("Freescale Semiconductor, Inc."); |
897 | MODULE_DESCRIPTION("MPC5121 NAND MTD driver"); | 885 | MODULE_DESCRIPTION("MPC5121 NAND MTD driver"); |