diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:20:20 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 15:33:20 -0500 |
commit | df07cf81268192e42c4cdf91f5f4bf9aaac1b2f0 (patch) | |
tree | 74b0effa291af8cdf7b9b834ad7e8775fec9287c /drivers/leds/leds-sunfire.c | |
parent | 6e0ee714fdab0568c3487455951dea2673e9557f (diff) |
leds: remove use of __devexit_p
CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Richard Purdie <rpurdie@rpsys.net>
Cc: Jan-Simon Moeller <jansimon.moeller@gmx.de>
Acked-by: Bryan Wu <cooloney@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/leds/leds-sunfire.c')
-rw-r--r-- | drivers/leds/leds-sunfire.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/leds/leds-sunfire.c b/drivers/leds/leds-sunfire.c index 134d9a4b34f1..3d35c5861146 100644 --- a/drivers/leds/leds-sunfire.c +++ b/drivers/leds/leds-sunfire.c | |||
@@ -223,7 +223,7 @@ MODULE_ALIAS("platform:sunfire-fhc-leds"); | |||
223 | 223 | ||
224 | static struct platform_driver sunfire_clockboard_led_driver = { | 224 | static struct platform_driver sunfire_clockboard_led_driver = { |
225 | .probe = sunfire_clockboard_led_probe, | 225 | .probe = sunfire_clockboard_led_probe, |
226 | .remove = __devexit_p(sunfire_led_generic_remove), | 226 | .remove = sunfire_led_generic_remove, |
227 | .driver = { | 227 | .driver = { |
228 | .name = "sunfire-clockboard-leds", | 228 | .name = "sunfire-clockboard-leds", |
229 | .owner = THIS_MODULE, | 229 | .owner = THIS_MODULE, |
@@ -232,7 +232,7 @@ static struct platform_driver sunfire_clockboard_led_driver = { | |||
232 | 232 | ||
233 | static struct platform_driver sunfire_fhc_led_driver = { | 233 | static struct platform_driver sunfire_fhc_led_driver = { |
234 | .probe = sunfire_fhc_led_probe, | 234 | .probe = sunfire_fhc_led_probe, |
235 | .remove = __devexit_p(sunfire_led_generic_remove), | 235 | .remove = sunfire_led_generic_remove, |
236 | .driver = { | 236 | .driver = { |
237 | .name = "sunfire-fhc-leds", | 237 | .name = "sunfire-fhc-leds", |
238 | .owner = THIS_MODULE, | 238 | .owner = THIS_MODULE, |