Skip to content

Commit

Permalink
gpio: Restore indentation of parent device setup
Browse files Browse the repository at this point in the history
Fixes: 58383c7 ("gpio: change member .dev to .parent")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
  • Loading branch information
Geert Uytterhoeven authored and Linus Walleij committed Dec 10, 2015
1 parent 3e64074 commit 0d1bb2b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion drivers/gpio/gpio-pcf857x.c
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ static int pcf857x_probe(struct i2c_client *client,

gpio->chip.base = pdata ? pdata->gpio_base : -1;
gpio->chip.can_sleep = true;
gpio->chip.parent = &client->dev;
gpio->chip.parent = &client->dev;
gpio->chip.owner = THIS_MODULE;
gpio->chip.get = pcf857x_get;
gpio->chip.set = pcf857x_set;
Expand Down
2 changes: 1 addition & 1 deletion drivers/gpio/gpio-tz1090-pdc.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ static int tz1090_pdc_gpio_probe(struct platform_device *pdev)

/* Set up GPIO chip */
priv->chip.label = "tz1090-pdc-gpio";
priv->chip.parent = &pdev->dev;
priv->chip.parent = &pdev->dev;
priv->chip.direction_input = tz1090_pdc_gpio_direction_input;
priv->chip.direction_output = tz1090_pdc_gpio_direction_output;
priv->chip.get = tz1090_pdc_gpio_get;
Expand Down
2 changes: 1 addition & 1 deletion drivers/gpio/gpio-tz1090.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0d1bb2b

Please sign in to comment.