diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2015-12-08 16:03:48 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2016-02-19 11:51:43 +0300 |
commit | ebdbcba0d5bd94aedb89951e27e6ac6a396ac967 (patch) | |
tree | 30ea84178507b8f3c345d48447db939ad63ddf23 /arch | |
parent | e0958405bc5861b42fab41a11dbdd7ddabd8d4b6 (diff) | |
download | linux-ebdbcba0d5bd94aedb89951e27e6ac6a396ac967.tar.xz |
m68k: gpio: switch to gpiochip_add_data()
We're planning to remove the gpiochip_add() function to swith
to gpiochip_add_data() with NULL for data argument.
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/m68k/coldfire/gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/coldfire/gpio.c b/arch/m68k/coldfire/gpio.c index 37a83e27c7a6..8832083e1cb8 100644 --- a/arch/m68k/coldfire/gpio.c +++ b/arch/m68k/coldfire/gpio.c @@ -178,7 +178,7 @@ static struct gpio_chip mcfgpio_chip = { static int __init mcfgpio_sysinit(void) { - gpiochip_add(&mcfgpio_chip); + gpiochip_add_data(&mcfgpio_chip, NULL); return subsys_system_register(&mcfgpio_subsys, NULL); } |