diff options
author | Axel Lin <axel.lin@ingics.com> | 2014-03-24 22:44:19 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2014-03-27 05:19:08 -0400 |
commit | fc860356aca3dd7cd3eed74ede29a84c55992d27 (patch) | |
tree | 4d5d6fee87a469f65db2bae6dbf3cfa92fea8a94 /drivers/gpio | |
parent | c9e8dbadb0528d872c5734858dbf76aa4cb31df9 (diff) |
gpio: moxart: Actually set output state in moxart_gpio_direction_output()
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>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpio-moxart.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-moxart.c b/drivers/gpio/gpio-moxart.c index a19a14d590f9..ccd45704e5fd 100644 --- a/drivers/gpio/gpio-moxart.c +++ b/drivers/gpio/gpio-moxart.c | |||
@@ -88,6 +88,7 @@ static int moxart_gpio_direction_output(struct gpio_chip *chip, | |||
88 | struct moxart_gpio_chip *gc = to_moxart_gpio(chip); | 88 | struct moxart_gpio_chip *gc = to_moxart_gpio(chip); |
89 | void __iomem *ioaddr = gc->base + GPIO_PIN_DIRECTION; | 89 | void __iomem *ioaddr = gc->base + GPIO_PIN_DIRECTION; |
90 | 90 | ||
91 | moxart_gpio_set(chip, offset, value); | ||
91 | writel(readl(ioaddr) | BIT(offset), ioaddr); | 92 | writel(readl(ioaddr) | BIT(offset), ioaddr); |
92 | return 0; | 93 | return 0; |
93 | } | 94 | } |