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/onenand/samsung.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/onenand/samsung.c')
-rw-r--r-- | drivers/mtd/onenand/samsung.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/mtd/onenand/samsung.c b/drivers/mtd/onenand/samsung.c index 5474547eafc2..fa1ee43f735b 100644 --- a/drivers/mtd/onenand/samsung.c +++ b/drivers/mtd/onenand/samsung.c | |||
@@ -1133,18 +1133,7 @@ static struct platform_driver s3c_onenand_driver = { | |||
1133 | .remove = __devexit_p(s3c_onenand_remove), | 1133 | .remove = __devexit_p(s3c_onenand_remove), |
1134 | }; | 1134 | }; |
1135 | 1135 | ||
1136 | static int __init s3c_onenand_init(void) | 1136 | module_platform_driver(s3c_onenand_driver); |
1137 | { | ||
1138 | return platform_driver_register(&s3c_onenand_driver); | ||
1139 | } | ||
1140 | |||
1141 | static void __exit s3c_onenand_exit(void) | ||
1142 | { | ||
1143 | platform_driver_unregister(&s3c_onenand_driver); | ||
1144 | } | ||
1145 | |||
1146 | module_init(s3c_onenand_init); | ||
1147 | module_exit(s3c_onenand_exit); | ||
1148 | 1137 | ||
1149 | MODULE_LICENSE("GPL"); | 1138 | MODULE_LICENSE("GPL"); |
1150 | MODULE_AUTHOR("Kyungmin Park <kyungmin.park@samsung.com>"); | 1139 | MODULE_AUTHOR("Kyungmin Park <kyungmin.park@samsung.com>"); |