Commit fd19f534 authored by Linus Walleij's avatar Linus Walleij

unicore32: 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.
Acked-by: default avatarGuan Xuetao <gxt@mprc.pku.edu.cn>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent efed58f1
......@@ -14,6 +14,8 @@
#include <linux/init.h>
#include <linux/module.h>
#include <linux/gpio/driver.h>
/* FIXME: needed for gpio_set_value() - convert to use descriptors or hogs */
#include <linux/gpio.h>
#include <mach/hardware.h>
......@@ -118,5 +120,5 @@ void __init puv3_init_gpio(void)
* gpio_set_value(GPO_SET_V2, 1);
*/
#endif
gpiochip_add(&puv3_gpio_chip);
gpiochip_add_data(&puv3_gpio_chip, NULL);
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment