]> git.karo-electronics.de Git - linux-beck.git/commitdiff
gpio: altera-a10sr: Drop unnecessary gpiochip_remove
authorWei Yongjun <weiyongjun1@huawei.com>
Mon, 24 Oct 2016 14:49:13 +0000 (14:49 +0000)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 25 Oct 2016 11:58:42 +0000 (13:58 +0200)
It's not necessary to unregister gpio_chip which registered
with devm_gpiochip_add_data().
Also get rid of useless altr_a10sr_gpio_remove().

Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-altera-a10sr.c

index 8274f98e3beea5b034eafc3cafb62a3bc14c1871..9e1a138fed53372a56dd1b7d2982ec198f46b3f1 100644 (file)
@@ -110,15 +110,6 @@ static int altr_a10sr_gpio_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int altr_a10sr_gpio_remove(struct platform_device *pdev)
-{
-       struct altr_a10sr_gpio *gpio = platform_get_drvdata(pdev);
-
-       gpiochip_remove(&gpio->gp);
-
-       return 0;
-}
-
 static const struct of_device_id altr_a10sr_gpio_of_match[] = {
        { .compatible = "altr,a10sr-gpio" },
        { },
@@ -127,7 +118,6 @@ MODULE_DEVICE_TABLE(of, altr_a10sr_gpio_of_match);
 
 static struct platform_driver altr_a10sr_gpio_driver = {
        .probe = altr_a10sr_gpio_probe,
-       .remove = altr_a10sr_gpio_remove,
        .driver = {
                .name   = "altr_a10sr_gpio",
                .of_match_table = of_match_ptr(altr_a10sr_gpio_of_match),