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

Commit 5c97d146 authored by Axel Lin's avatar Axel Lin Committed by Linus Walleij
Browse files

gpio: viperboard: Remove duplicate code to set gpio->gpiob_val



Set it once is enough, and it's done in vprbrd_gpiob_set() which is called by
vprbrd_gpiob_direction_output().

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Tested-by: default avatarLars Poeschel <poeschel@lemonage.de>
Acked-by: default avatarLars Poeschel <poeschel@lemonage.de>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 25f27db4
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -380,10 +380,6 @@ static int vprbrd_gpiob_direction_output(struct gpio_chip *chip,
	struct vprbrd *vb = gpio->vb;

	gpio->gpiob_out |= (1 << offset);
	if (value)
		gpio->gpiob_val |= (1 << offset);
	else
		gpio->gpiob_val &= ~(1 << offset);

	mutex_lock(&vb->lock);