Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0c271658 authored by Axel Lin's avatar Axel Lin Committed by Linus Walleij
Browse files

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: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 214338e3
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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);