aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio/gpio-tps6586x.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-11-19 13:20:08 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-11-28 11:36:36 -0800
commit8283c4ff57bdf3c1d8985c86e4ef44e1bb70f1f6 (patch)
tree879d5005d3e9e4922002221206533cee8dcafc70 /drivers/gpio/gpio-tps6586x.c
parentclk: remove use of __devexit (diff)
downloadlinux-dev-8283c4ff57bdf3c1d8985c86e4ef44e1bb70f1f6.tar.xz
linux-dev-8283c4ff57bdf3c1d8985c86e4ef44e1bb70f1f6.zip
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-tps6586x.c')
-rw-r--r--drivers/gpio/gpio-tps6586x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-tps6586x.c b/drivers/gpio/gpio-tps6586x.c
index 2526b3bb0fae..d048ea81e521 100644
--- a/drivers/gpio/gpio-tps6586x.c
+++ b/drivers/gpio/gpio-tps6586x.c
@@ -137,7 +137,7 @@ static struct platform_driver tps6586x_gpio_driver = {
.driver.name = "tps6586x-gpio",
.driver.owner = THIS_MODULE,
.probe = tps6586x_gpio_probe,
- .remove = __devexit_p(tps6586x_gpio_remove),
+ .remove = tps6586x_gpio_remove,
};
static int __init tps6586x_gpio_init(void)