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: Axel Lin <axel.lin@ingics.com> Tested-by: Lars Poeschel <poeschel@lemonage.de> Acked-by: Lars Poeschel <poeschel@lemonage.de> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
25f27db48e
commit
5c97d146f2
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue