aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaxman Dewangan <ldewangan@nvidia.com>2016-02-22 07:13:28 -0500
committerLaxman Dewangan <ldewangan@nvidia.com>2016-02-23 10:05:32 -0500
commit0c638759bf92bab251fb1a1999f5deff3423d7ab (patch)
tree6aed2226ce1c49e3fc5d6904c00255cadbc9a226
parentc05f813b96f260f214870e1f16bd98c2892c872d (diff)
gpio: iop: Use devm_gpiochip_add_data() for gpio registration
Use devm_gpiochip_add_data() for GPIO registration. Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
-rw-r--r--drivers/gpio/gpio-iop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-iop.c b/drivers/gpio/gpio-iop.c
index fb65e5850e0c..860c535922fd 100644
--- a/drivers/gpio/gpio-iop.c
+++ b/drivers/gpio/gpio-iop.c
@@ -114,7 +114,7 @@ static int iop3xx_gpio_probe(struct platform_device *pdev)
114 if (IS_ERR(base)) 114 if (IS_ERR(base))
115 return PTR_ERR(base); 115 return PTR_ERR(base);
116 116
117 return gpiochip_add_data(&iop3xx_chip, NULL); 117 return devm_gpiochip_add_data(&pdev->dev, &iop3xx_chip, NULL);
118} 118}
119 119
120static struct platform_driver iop3xx_gpio_driver = { 120static struct platform_driver iop3xx_gpio_driver = {