diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:21:23 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-21 15:49:50 -0500 |
commit | 2d6bed9ca93e98685bc5038d686984fd449cd978 (patch) | |
tree | 8891b65ede778319ebb28c2aa40162a61994d852 /drivers/misc/apds9802als.c | |
parent | 989623c7d687d3996d5676a6e1474dc7f01bf158 (diff) |
drivers/misc: 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: "Michał Mirosław" <mirq-linux@rere.qmqm.pl>
Cc: Wolfram Sang <w.sang@pengutronix.de>
Cc: Eric Piel <eric.piel@tremplin-utc.net>
Cc: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/apds9802als.c')
-rw-r--r-- | drivers/misc/apds9802als.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/apds9802als.c b/drivers/misc/apds9802als.c index 94923d259910..0132d15a995c 100644 --- a/drivers/misc/apds9802als.c +++ b/drivers/misc/apds9802als.c | |||
@@ -326,7 +326,7 @@ static struct i2c_driver apds9802als_driver = { | |||
326 | .pm = APDS9802ALS_PM_OPS, | 326 | .pm = APDS9802ALS_PM_OPS, |
327 | }, | 327 | }, |
328 | .probe = apds9802als_probe, | 328 | .probe = apds9802als_probe, |
329 | .remove = __devexit_p(apds9802als_remove), | 329 | .remove = apds9802als_remove, |
330 | .suspend = apds9802als_suspend, | 330 | .suspend = apds9802als_suspend, |
331 | .resume = apds9802als_resume, | 331 | .resume = apds9802als_resume, |
332 | .id_table = apds9802als_id, | 332 | .id_table = apds9802als_id, |