We're planning to remove the gpiochip_add() function to swith
to gpiochip_add_data() with NULL for data argument.

Cc: Ralf Baechle <[email protected]>
Cc: [email protected]
Signed-off-by: Linus Walleij <[email protected]>
---
Ralf: please ACK this so I can take it through the GPIO tree.
BTW: would be nice if the MIPS GPIO drivers could move down
to drivers/gpio in the long run.
---
 arch/mips/alchemy/common/gpiolib.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/mips/alchemy/common/gpiolib.c 
b/arch/mips/alchemy/common/gpiolib.c
index f9bc4f520440..e2606f8eb2fa 100644
--- a/arch/mips/alchemy/common/gpiolib.c
+++ b/arch/mips/alchemy/common/gpiolib.c
@@ -160,14 +160,14 @@ static int __init alchemy_gpiochip_init(void)
 
        switch (alchemy_get_cputype()) {
        case ALCHEMY_CPU_AU1000:
-               ret = gpiochip_add(&alchemy_gpio_chip[0]);
+               ret = gpiochip_add_data(&alchemy_gpio_chip[0], NULL);
                break;
        case ALCHEMY_CPU_AU1500...ALCHEMY_CPU_AU1200:
-               ret = gpiochip_add(&alchemy_gpio_chip[0]);
-               ret |= gpiochip_add(&alchemy_gpio_chip[1]);
+               ret = gpiochip_add_data(&alchemy_gpio_chip[0], NULL);
+               ret |= gpiochip_add_data(&alchemy_gpio_chip[1], NULL);
                break;
        case ALCHEMY_CPU_AU1300:
-               ret = gpiochip_add(&au1300_gpiochip);
+               ret = gpiochip_add_data(&au1300_gpiochip, NULL);
                break;
        }
        return ret;
-- 
2.4.3

--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to