]> git.karo-electronics.de Git - linux-beck.git/commitdiff
gpio: timberdale Use devm_gpiochip_add_data() for gpio registration
authorLaxman Dewangan <ldewangan@nvidia.com>
Mon, 22 Feb 2016 12:13:28 +0000 (17:43 +0530)
committerLaxman Dewangan <ldewangan@nvidia.com>
Tue, 23 Feb 2016 15:05:46 +0000 (20:35 +0530)
Use devm_gpiochip_add_data() for GPIO registration.

Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
drivers/gpio/gpio-timberdale.c

index a6de10c5275b00b8d65b8a9f278daae46b79ed14..f0164ec43921e12625bdbd84338f26eb01ec8936 100644 (file)
@@ -279,7 +279,7 @@ static int timbgpio_probe(struct platform_device *pdev)
        gc->ngpio = pdata->nr_pins;
        gc->can_sleep = false;
 
-       err = gpiochip_add_data(gc, tgpio);
+       err = devm_gpiochip_add_data(&pdev->dev, gc, tgpio);
        if (err)
                return err;
 
@@ -320,8 +320,6 @@ static int timbgpio_remove(struct platform_device *pdev)
                irq_set_handler_data(irq, NULL);
        }
 
-       gpiochip_remove(&tgpio->gpio);
-
        return 0;
 }