diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2015-12-04 17:28:16 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2015-12-11 02:10:48 +0300 |
commit | 0d1bb2b3b838e6731b5900bb3513c10027cb028c (patch) | |
tree | 50fbbe183a2a0c5e41817a29aa37f61d32374c69 /drivers/gpio/gpio-tz1090.c | |
parent | 3e640743fee6e6a82ead1f163737755b2a965712 (diff) | |
download | linux-0d1bb2b3b838e6731b5900bb3513c10027cb028c.tar.xz |
gpio: Restore indentation of parent device setup
Fixes: 58383c78425e4ee1 ("gpio: change member .dev to .parent")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-tz1090.c')
-rw-r--r-- | drivers/gpio/gpio-tz1090.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-tz1090.c b/drivers/gpio/gpio-tz1090.c index 7858d90202f3..79ef6e1ce568 100644 --- a/drivers/gpio/gpio-tz1090.c +++ b/drivers/gpio/gpio-tz1090.c @@ -425,7 +425,7 @@ static int tz1090_gpio_bank_probe(struct tz1090_gpio_bank_info *info) snprintf(bank->label, sizeof(bank->label), "tz1090-gpio-%u", info->index); bank->chip.label = bank->label; - bank->chip.parent = dev; + bank->chip.parent = dev; bank->chip.direction_input = tz1090_gpio_direction_input; bank->chip.direction_output = tz1090_gpio_direction_output; bank->chip.get = tz1090_gpio_get; |