diff options
author | Axel Lin <axel.lin@ingics.com> | 2016-02-26 15:59:57 +0800 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2016-03-07 11:37:11 +0700 |
commit | 0c271658aa4b60f5739691e540548aa140e4b3b5 (patch) | |
tree | 2f36ec35dd20bf3aa0465468e8fc0ff5cfd82147 /drivers/gpio | |
parent | 214338e372af2b856af07978daa771dbe087f990 (diff) | |
download | linux-0c271658aa4b60f5739691e540548aa140e4b3b5.tar.bz2 |
gpio: moxart: Drop redundant code to set already initialized gpio_chip fields
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>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpio-moxart.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpio/gpio-moxart.c b/drivers/gpio/gpio-moxart.c index ca604538ebf7..f7cf5930fbef 100644 --- a/drivers/gpio/gpio-moxart.c +++ b/drivers/gpio/gpio-moxart.c @@ -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); |