diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:21:09 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 15:03:45 -0500 |
commit | d1723fa266aff677571cad0bac7203ed2e424823 (patch) | |
tree | 1df096b803dbd48b58b81235262b6e51c5233072 /drivers/video/backlight/lp855x_bl.c | |
parent | 4b12b896c27c3b54592816606679f5b02f638930 (diff) |
backlight: 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: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Acked-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/video/backlight/lp855x_bl.c')
-rw-r--r-- | drivers/video/backlight/lp855x_bl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/backlight/lp855x_bl.c b/drivers/video/backlight/lp855x_bl.c index aa6d4f71131f..b41c10f6e4f2 100644 --- a/drivers/video/backlight/lp855x_bl.c +++ b/drivers/video/backlight/lp855x_bl.c | |||
@@ -324,7 +324,7 @@ static struct i2c_driver lp855x_driver = { | |||
324 | .name = "lp855x", | 324 | .name = "lp855x", |
325 | }, | 325 | }, |
326 | .probe = lp855x_probe, | 326 | .probe = lp855x_probe, |
327 | .remove = __devexit_p(lp855x_remove), | 327 | .remove = lp855x_remove, |
328 | .id_table = lp855x_ids, | 328 | .id_table = lp855x_ids, |
329 | }; | 329 | }; |
330 | 330 | ||