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/maps/sun_uflash.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/maps/sun_uflash.c')
-rw-r--r-- | drivers/mtd/maps/sun_uflash.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/mtd/maps/sun_uflash.c b/drivers/mtd/maps/sun_uflash.c index 2d66234f57cb..175e537b444f 100644 --- a/drivers/mtd/maps/sun_uflash.c +++ b/drivers/mtd/maps/sun_uflash.c | |||
@@ -158,15 +158,4 @@ static struct platform_driver uflash_driver = { | |||
158 | .remove = __devexit_p(uflash_remove), | 158 | .remove = __devexit_p(uflash_remove), |
159 | }; | 159 | }; |
160 | 160 | ||
161 | static int __init uflash_init(void) | 161 | module_platform_driver(uflash_driver); |
162 | { | ||
163 | return platform_driver_register(&uflash_driver); | ||
164 | } | ||
165 | |||
166 | static void __exit uflash_exit(void) | ||
167 | { | ||
168 | platform_driver_unregister(&uflash_driver); | ||
169 | } | ||
170 | |||
171 | module_init(uflash_init); | ||
172 | module_exit(uflash_exit); | ||