]> git.karo-electronics.de Git - linux-beck.git/commitdiff
gpio: ep93xx: 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:30 +0000 (20:35 +0530)
Use devm_gpiochip_add_data() for GPIO registration.

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

index ad279078fed7f9c441e046e820ca60d27b53b579..d054219e18b930d1cc0df7880066fd3e8b3b0ed1 100644 (file)
@@ -339,7 +339,7 @@ static int ep93xx_gpio_add_bank(struct gpio_chip *gc, struct device *dev,
                gc->to_irq = ep93xx_gpio_to_irq;
        }
 
-       return gpiochip_add_data(gc, NULL);
+       return devm_gpiochip_add_data(dev, gc, NULL);
 }
 
 static int ep93xx_gpio_probe(struct platform_device *pdev)