diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:20:08 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 14:36:36 -0500 |
commit | 8283c4ff57bdf3c1d8985c86e4ef44e1bb70f1f6 (patch) | |
tree | 879d5005d3e9e4922002221206533cee8dcafc70 /drivers/gpio/gpio-rc5t583.c | |
parent | 1fc7ad5d393df9e69c0cfcb01b2d803dd2021277 (diff) |
gpio: 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: Grant Likely <grant.likely@secretlab.ca>
Cc: Peter Tyser <ptyser@xes-inc.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/gpio/gpio-rc5t583.c')
-rw-r--r-- | drivers/gpio/gpio-rc5t583.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-rc5t583.c b/drivers/gpio/gpio-rc5t583.c index 08428bf17718..2931514c574a 100644 --- a/drivers/gpio/gpio-rc5t583.c +++ b/drivers/gpio/gpio-rc5t583.c | |||
@@ -159,7 +159,7 @@ static struct platform_driver rc5t583_gpio_driver = { | |||
159 | .owner = THIS_MODULE, | 159 | .owner = THIS_MODULE, |
160 | }, | 160 | }, |
161 | .probe = rc5t583_gpio_probe, | 161 | .probe = rc5t583_gpio_probe, |
162 | .remove = __devexit_p(rc5t583_gpio_remove), | 162 | .remove = rc5t583_gpio_remove, |
163 | }; | 163 | }; |
164 | 164 | ||
165 | static int __init rc5t583_gpio_init(void) | 165 | static int __init rc5t583_gpio_init(void) |