From: Axel Lin Date: Tue, 25 Mar 2014 02:44:19 +0000 (+0800) Subject: gpio: moxart: Actually set output state in moxart_gpio_direction_output() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=fc860356aca3dd7cd3eed74ede29a84c55992d27;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git 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 Reviewed-by: Alexandre Courbot Signed-off-by: Linus Walleij --- 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, 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; }