aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio/gpio-janz-ttl.c
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2015-12-08 10:41:44 +0100
committerLinus Walleij <linus.walleij@linaro.org>2016-01-05 11:21:20 +0100
commit4eab22e748b550045b8a98be3b72f31e22557605 (patch)
treed694e8f9a0c768a8949387d98fa47d16bcb08181 /drivers/gpio/gpio-janz-ttl.c
parentgpio: zynq: use gpiochip data pointer (diff)
downloadlinux-dev-4eab22e748b550045b8a98be3b72f31e22557605.tar.xz
linux-dev-4eab22e748b550045b8a98be3b72f31e22557605.zip
gpio: convert remaining users to gpiochip_add_data()
For completion, sweep the floor from all gpiochip_add() usage so we can remove that function and get rid of the function wrapper gpiochip_add(). Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-janz-ttl.c')
-rw-r--r--drivers/gpio/gpio-janz-ttl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-janz-ttl.c b/drivers/gpio/gpio-janz-ttl.c
index 236d322a0b5e..482aa0353868 100644
--- a/drivers/gpio/gpio-janz-ttl.c
+++ b/drivers/gpio/gpio-janz-ttl.c
@@ -182,7 +182,7 @@ static int ttl_probe(struct platform_device *pdev)
gpio->base = -1;
gpio->ngpio = 20;
- ret = gpiochip_add(gpio);
+ ret = gpiochip_add_data(gpio, NULL);
if (ret) {
dev_err(dev, "unable to add GPIO chip\n");
return ret;