Commit 35a26144 authored by Amitesh Singh's avatar Amitesh Singh Committed by Linus Walleij

gpio: f7188x: use gpiochip_get_data instead of container_of

gpiochip_add_data is already used to add data pointer and chip.
Lets rely on gpiochip_get_data which is getting used in other
gpio_chip functions.
Signed-off-by: default avatarAmitesh Singh <singh.amitesh@gmail.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 8df759c9
...@@ -214,8 +214,7 @@ static struct f7188x_gpio_bank f81866_gpio_bank[] = { ...@@ -214,8 +214,7 @@ static struct f7188x_gpio_bank f81866_gpio_bank[] = {
static int f7188x_gpio_get_direction(struct gpio_chip *chip, unsigned offset) static int f7188x_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
{ {
int err; int err;
struct f7188x_gpio_bank *bank = struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
container_of(chip, struct f7188x_gpio_bank, chip);
struct f7188x_sio *sio = bank->data->sio; struct f7188x_sio *sio = bank->data->sio;
u8 dir; u8 dir;
......
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