gpio: tb10x: Set output value before setting direction to output
authorAxel Lin <axel.lin@ingics.com>
Thu, 31 Oct 2013 03:23:46 +0000 (11:23 +0800)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 25 Nov 2013 08:02:29 +0000 (09:02 +0100)
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Christian Ruppert <christian.ruppert@abilis.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-tb10x.c

index 0502b9a..da071dd 100644 (file)
@@ -132,6 +132,7 @@ static int tb10x_gpio_direction_out(struct gpio_chip *chip,
        int mask = BIT(offset);
        int val = TB10X_GPIO_DIR_OUT << offset;
 
+       tb10x_gpio_set(chip, offset, value);
        tb10x_set_bits(tb10x_gpio, OFFSET_TO_REG_DDR, mask, val);
 
        return 0;