Skip to content

Commit

Permalink
gpio: moxart: Actually set output state in moxart_gpio_direction_outp…
Browse files Browse the repository at this point in the history
…ut()

moxart_gpio_direction_output() ignored the state passed into it. Fix it.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Reviewed-by: Alexandre Courbot <acourbot@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
  • Loading branch information
Axel Lin authored and Linus Walleij committed Mar 27, 2014
1 parent c9e8dba commit fc86035
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/gpio/gpio-moxart.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ static int moxart_gpio_direction_output(struct gpio_chip *chip,
struct moxart_gpio_chip *gc = to_moxart_gpio(chip);
void __iomem *ioaddr = gc->base + GPIO_PIN_DIRECTION;

moxart_gpio_set(chip, offset, value);
writel(readl(ioaddr) | BIT(offset), ioaddr);
return 0;
}
Expand Down

0 comments on commit fc86035

Please sign in to comment.