]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
gpio: moxart: fix build regression
authorArnd Bergmann <arnd@arndb.de>
Thu, 7 Jan 2016 13:55:34 +0000 (14:55 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 7 Jan 2016 15:16:38 +0000 (16:16 +0100)
A cleanup patch replaced bgpio_chip with gpio_chip but missed
two references to the bgpio_chip:

drivers/gpio/gpio-moxart.c:60:19: error: use of undeclared identifier 'bgc'; did you mean 'gc'?
        gc->bgpio_data = bgc->read_reg(bgc->reg_set);
drivers/gpio/gpio-moxart.c:35:20: note: 'gc' declared here
drivers/gpio/gpio-moxart.c:60:33: error: use of undeclared identifier 'bgc'; did you mean 'gc'?
        gc->bgpio_data = bgc->read_reg(bgc->reg_set);

This adds the missing change.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 0f4630f3720e ("gpio: generic: factor into gpio_chip struct")
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-moxart.c

index 71c13c4e12b5b5b5cd29fc21d486accc7f7a0543..ca604538ebf7e74acb523af0c2dc5a7e4ced5777 100644 (file)
@@ -57,7 +57,7 @@ static int moxart_gpio_probe(struct platform_device *pdev)
        gc->label = "moxart-gpio";
        gc->request = gpiochip_generic_request;
        gc->free = gpiochip_generic_free;
-       gc->bgpio_data = bgc->read_reg(bgc->reg_set);
+       gc->bgpio_data = gc->read_reg(gc->reg_set);
        gc->base = 0;
        gc->ngpio = 32;
        gc->parent = dev;