diff options
| author | Linus Walleij <[email protected]> | 2015-12-08 09:41:44 +0000 |
|---|---|---|
| committer | Linus Walleij <[email protected]> | 2016-01-05 10:21:20 +0000 |
| commit | 4eab22e748b550045b8a98be3b72f31e22557605 (patch) | |
| tree | d694e8f9a0c768a8949387d98fa47d16bcb08181 /drivers/gpio/gpio-ich.c | |
| parent | gpio: zynq: use gpiochip data pointer (diff) | |
| download | kernel-4eab22e748b550045b8a98be3b72f31e22557605.tar.gz kernel-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 <[email protected]>
Diffstat (limited to 'drivers/gpio/gpio-ich.c')
| -rw-r--r-- | drivers/gpio/gpio-ich.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-ich.c b/drivers/gpio/gpio-ich.c index 8623d12e23c1..a4893386abbf 100644 --- a/drivers/gpio/gpio-ich.c +++ b/drivers/gpio/gpio-ich.c @@ -499,7 +499,7 @@ static int ichx_gpio_probe(struct platform_device *pdev) init: ichx_gpiolib_setup(&ichx_priv.chip); - err = gpiochip_add(&ichx_priv.chip); + err = gpiochip_add_data(&ichx_priv.chip, NULL); if (err) { pr_err("Failed to register GPIOs\n"); goto add_err; |
