From: Axel Lin <axel.lin@ingics.com>
Date: Thu, 8 Jun 2017 09:20:12 +0000 (+0800)
Subject: dm: bcm6345_gpio: Set proper output level in bcm6345_gpio_direction_output
X-Git-Tag: v2025.01-rc5-pxa1908~6566
X-Git-Url: http://git.dujemihanovic.xyz/contact?a=commitdiff_plain;h=d2d20d9925ff57982fc0c50d4ec490323c2074f6;p=u-boot.git

dm: bcm6345_gpio: Set proper output level in bcm6345_gpio_direction_output

Current code does not set output level in bcm6345_gpio_direction_output,
fix it.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---

diff --git a/drivers/gpio/bcm6345_gpio.c b/drivers/gpio/bcm6345_gpio.c
index 009e2fc5a2..b9100cdc58 100644
--- a/drivers/gpio/bcm6345_gpio.c
+++ b/drivers/gpio/bcm6345_gpio.c
@@ -64,6 +64,8 @@ static int bcm6345_gpio_direction_output(struct udevice *dev, unsigned offset,
 {
 	struct bcm6345_gpio_priv *priv = dev_get_priv(dev);
 
+	bcm6345_gpio_set_value(dev, offset, value);
+
 	return bcm6345_gpio_set_direction(priv->reg_dirout, offset, 0);
 }