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-ot200.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-ot200.c')
-rw-r--r-- | drivers/leds/leds-ot200.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/leds/leds-ot200.c b/drivers/leds/leds-ot200.c index c4646825a620..925217890677 100644 --- a/drivers/leds/leds-ot200.c +++ b/drivers/leds/leds-ot200.c | |||
@@ -156,7 +156,7 @@ static int __devexit ot200_led_remove(struct platform_device *pdev) | |||
156 | 156 | ||
157 | static struct platform_driver ot200_led_driver = { | 157 | static struct platform_driver ot200_led_driver = { |
158 | .probe = ot200_led_probe, | 158 | .probe = ot200_led_probe, |
159 | .remove = __devexit_p(ot200_led_remove), | 159 | .remove = ot200_led_remove, |
160 | .driver = { | 160 | .driver = { |
161 | .name = "leds-ot200", | 161 | .name = "leds-ot200", |
162 | .owner = THIS_MODULE, | 162 | .owner = THIS_MODULE, |