diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2015-12-08 10:41:44 +0100 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2016-01-05 11:21:20 +0100 |
commit | 4eab22e748b550045b8a98be3b72f31e22557605 (patch) | |
tree | d694e8f9a0c768a8949387d98fa47d16bcb08181 /drivers/gpio/gpio-loongson.c | |
parent | 31a8944752f8a91d8591148f60cd6dfb08c4e415 (diff) | |
download | linux-4eab22e748b550045b8a98be3b72f31e22557605.tar.bz2 |
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-loongson.c')
-rw-r--r-- | drivers/gpio/gpio-loongson.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-loongson.c b/drivers/gpio/gpio-loongson.c index ccc65a1aea88..92c4fe7b2677 100644 --- a/drivers/gpio/gpio-loongson.c +++ b/drivers/gpio/gpio-loongson.c @@ -110,6 +110,6 @@ static struct gpio_chip loongson_chip = { static int __init loongson_gpio_setup(void) { - return gpiochip_add(&loongson_chip); + return gpiochip_add_data(&loongson_chip, NULL); } postcore_initcall(loongson_gpio_setup); |