diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2015-12-08 12:41:44 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2016-01-05 13:21:20 +0300 |
commit | 4eab22e748b550045b8a98be3b72f31e22557605 (patch) | |
tree | d694e8f9a0c768a8949387d98fa47d16bcb08181 /drivers/gpio/gpio-sa1100.c | |
parent | 31a8944752f8a91d8591148f60cd6dfb08c4e415 (diff) | |
download | linux-4eab22e748b550045b8a98be3b72f31e22557605.tar.xz |
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-sa1100.c')
-rw-r--r-- | drivers/gpio/gpio-sa1100.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-sa1100.c b/drivers/gpio/gpio-sa1100.c index 9d590166e952..0c99e8fb9af3 100644 --- a/drivers/gpio/gpio-sa1100.c +++ b/drivers/gpio/gpio-sa1100.c @@ -238,7 +238,7 @@ void __init sa1100_init_gpio(void) GRER = 0; GEDR = -1; - gpiochip_add(&sa1100_gpio_chip); + gpiochip_add_data(&sa1100_gpio_chip, NULL); sa1100_gpio_irqdomain = irq_domain_add_simple(NULL, 28, IRQ_GPIO0, |