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-lp3944.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-lp3944.c')
-rw-r--r-- | drivers/leds/leds-lp3944.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/leds/leds-lp3944.c b/drivers/leds/leds-lp3944.c index c298f7d9f535..aa74b797a2fa 100644 --- a/drivers/leds/leds-lp3944.c +++ b/drivers/leds/leds-lp3944.c | |||
@@ -446,7 +446,7 @@ static struct i2c_driver lp3944_driver = { | |||
446 | .name = "lp3944", | 446 | .name = "lp3944", |
447 | }, | 447 | }, |
448 | .probe = lp3944_probe, | 448 | .probe = lp3944_probe, |
449 | .remove = __devexit_p(lp3944_remove), | 449 | .remove = lp3944_remove, |
450 | .id_table = lp3944_id, | 450 | .id_table = lp3944_id, |
451 | }; | 451 | }; |
452 | 452 | ||