diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-01-10 18:09:24 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-10 19:30:48 -0500 |
commit | 892a8843fbef07a7f2ab62d5f7ff5c16ea0903b0 (patch) | |
tree | cddc55a75280ec2851e26f127acd2f05e9483cc1 /drivers/leds/leds-88pm860x.c | |
parent | e2c17bc6f717a8847df2a867caec6ba4fe85f3fc (diff) |
leds: convert led platform drivers to module_platform_driver
Factor out some boilerplate code for platform driver registration into
module_platform_driver.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Haojian Zhuang <hzhuang1@marvell.com> [led-88pm860x.c]
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Cc: Michael Hennerich <hennerich@blackfin.uclinux.org>
Cc: Mike Rapoport <mike@compulab.co.il>
Cc: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/leds/leds-88pm860x.c')
-rw-r--r-- | drivers/leds/leds-88pm860x.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/leds/leds-88pm860x.c b/drivers/leds/leds-88pm860x.c index 0810604dc701..4ca00624bd18 100644 --- a/drivers/leds/leds-88pm860x.c +++ b/drivers/leds/leds-88pm860x.c | |||
@@ -238,17 +238,7 @@ static struct platform_driver pm860x_led_driver = { | |||
238 | .remove = pm860x_led_remove, | 238 | .remove = pm860x_led_remove, |
239 | }; | 239 | }; |
240 | 240 | ||
241 | static int __devinit pm860x_led_init(void) | 241 | module_platform_driver(pm860x_led_driver); |
242 | { | ||
243 | return platform_driver_register(&pm860x_led_driver); | ||
244 | } | ||
245 | module_init(pm860x_led_init); | ||
246 | |||
247 | static void __devexit pm860x_led_exit(void) | ||
248 | { | ||
249 | platform_driver_unregister(&pm860x_led_driver); | ||
250 | } | ||
251 | module_exit(pm860x_led_exit); | ||
252 | 242 | ||
253 | MODULE_DESCRIPTION("LED driver for Marvell PM860x"); | 243 | MODULE_DESCRIPTION("LED driver for Marvell PM860x"); |
254 | MODULE_AUTHOR("Haojian Zhuang <haojian.zhuang@marvell.com>"); | 244 | MODULE_AUTHOR("Haojian Zhuang <haojian.zhuang@marvell.com>"); |