]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
gpio: Restore indentation of parent device setup
authorGeert Uytterhoeven <geert+renesas@glider.be>
Fri, 4 Dec 2015 14:28:16 +0000 (15:28 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 10 Dec 2015 23:10:48 +0000 (00:10 +0100)
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>
drivers/gpio/gpio-pcf857x.c
drivers/gpio/gpio-tz1090-pdc.c
drivers/gpio/gpio-tz1090.c

index 407ca5e1aafa47253293b3f873ea5fac268b5c01..bf511c0efa4894cc14afd0e91b6dbf9577c7c0fa 100644 (file)
@@ -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;
index a974397164b247b2b3982b212716bf8f9907d0d6..0a01c8736affaceecb8fb46ef971456ca77b9f18 100644 (file)
@@ -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;
index 7858d90202f315b11694eab500c3f3e4d550aa26..79ef6e1ce568b3b80e1f2469f7e4c3f4103ee8eb 100644 (file)
@@ -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;