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-atmel-pwm.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-atmel-pwm.c')
-rw-r--r-- | drivers/leds/leds-atmel-pwm.c | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/drivers/leds/leds-atmel-pwm.c b/drivers/leds/leds-atmel-pwm.c index 109c875ea233..800243b6037e 100644 --- a/drivers/leds/leds-atmel-pwm.c +++ b/drivers/leds/leds-atmel-pwm.c | |||
@@ -134,29 +134,18 @@ static int __exit pwmled_remove(struct platform_device *pdev) | |||
134 | return 0; | 134 | return 0; |
135 | } | 135 | } |
136 | 136 | ||
137 | /* work with hotplug and coldplug */ | ||
138 | MODULE_ALIAS("platform:leds-atmel-pwm"); | ||
139 | |||
140 | static struct platform_driver pwmled_driver = { | 137 | static struct platform_driver pwmled_driver = { |
141 | .driver = { | 138 | .driver = { |
142 | .name = "leds-atmel-pwm", | 139 | .name = "leds-atmel-pwm", |
143 | .owner = THIS_MODULE, | 140 | .owner = THIS_MODULE, |
144 | }, | 141 | }, |
145 | /* REVISIT add suspend() and resume() methods */ | 142 | /* REVISIT add suspend() and resume() methods */ |
143 | .probe = pwmled_probe, | ||
146 | .remove = __exit_p(pwmled_remove), | 144 | .remove = __exit_p(pwmled_remove), |
147 | }; | 145 | }; |
148 | 146 | ||
149 | static int __init modinit(void) | 147 | module_platform_driver(pwmled_driver); |
150 | { | ||
151 | return platform_driver_probe(&pwmled_driver, pwmled_probe); | ||
152 | } | ||
153 | module_init(modinit); | ||
154 | |||
155 | static void __exit modexit(void) | ||
156 | { | ||
157 | platform_driver_unregister(&pwmled_driver); | ||
158 | } | ||
159 | module_exit(modexit); | ||
160 | 148 | ||
161 | MODULE_DESCRIPTION("Driver for LEDs with PWM-controlled brightness"); | 149 | MODULE_DESCRIPTION("Driver for LEDs with PWM-controlled brightness"); |
162 | MODULE_LICENSE("GPL"); | 150 | MODULE_LICENSE("GPL"); |
151 | MODULE_ALIAS("platform:leds-atmel-pwm"); | ||