MIPS: txx9: switch to gpiochip_add_data()
authorLinus Walleij <linus.walleij@linaro.org>
Tue, 8 Dec 2015 13:33:54 +0000 (14:33 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 19 Feb 2016 08:51:44 +0000 (09:51 +0100)
We're planning to remove the gpiochip_add() function to swith
to gpiochip_add_data() with NULL for data argument.

Cc: linux-mips@linux-mips.org
Acked-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
arch/mips/kernel/gpio_txx9.c

index 705be43..cbd47f3 100644 (file)
@@ -10,7 +10,7 @@
 
 #include <linux/init.h>
 #include <linux/spinlock.h>
-#include <linux/gpio.h>
+#include <linux/gpio/driver.h>
 #include <linux/errno.h>
 #include <linux/io.h>
 #include <asm/txx9pio.h>
@@ -85,5 +85,5 @@ int __init txx9_gpio_init(unsigned long baseaddr,
                return -ENODEV;
        txx9_gpio_chip.base = base;
        txx9_gpio_chip.ngpio = num;
-       return gpiochip_add(&txx9_gpio_chip);
+       return gpiochip_add_data(&txx9_gpio_chip, NULL);
 }