]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
gpio: moxart: Drop redundant code to set already initialized gpio_chip fields
authorAxel Lin <axel.lin@ingics.com>
Fri, 26 Feb 2016 07:59:57 +0000 (15:59 +0800)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 7 Mar 2016 04:37:11 +0000 (11:37 +0700)
These fields are initialized by bgpio_init() with exactly the same settings
so remove the redundant code.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-moxart.c

index ca604538ebf7e74acb523af0c2dc5a7e4ced5777..f7cf5930fbef910b7a85646a46c6318fa730674f 100644 (file)
@@ -57,10 +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 = gc->read_reg(gc->reg_set);
        gc->base = 0;
-       gc->ngpio = 32;
-       gc->parent = dev;
        gc->owner = THIS_MODULE;
 
        ret = gpiochip_add_data(gc, NULL);