summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorPeng Fan <peng.fan@nxp.com>2017-02-06 16:20:53 +0800
committerYe Li <ye.li@nxp.com>2017-03-14 21:27:09 +0800
commit205d1f74991ec04aad530985e8f008ed272259fe (patch)
treed97f05b7fcfa5aa5a95d681fecd612fe9198a8d1 /drivers
parent8cdc3a1e9cafdd92de2db2cca171ce925e1121a5 (diff)
downloadu-boot-imx-205d1f74991ec04aad530985e8f008ed272259fe.zip
u-boot-imx-205d1f74991ec04aad530985e8f008ed272259fe.tar.gz
u-boot-imx-205d1f74991ec04aad530985e8f008ed272259fe.tar.bz2
MLK-14423-2 gpio: 74x164: make oe-pins optional
Make oe-pins optional because some boards have fixed it to enable. Signed-off-by: Peng Fan <peng.fan@nxp.com> Signed-off-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpio/74x164_gpio.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpio/74x164_gpio.c b/drivers/gpio/74x164_gpio.c
index 750eedf..53a639a 100644
--- a/drivers/gpio/74x164_gpio.c
+++ b/drivers/gpio/74x164_gpio.c
@@ -156,8 +156,7 @@ static int gen_74x164_probe(struct udevice *dev)
ret = gpio_request_by_name(dev, "oe-gpios", 0, &priv->oe,
GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE);
if (ret) {
- dev_err(dev, "No oe-pins property\n");
- goto free_buf;
+ dev_dbg(dev, "No oe-pins property\n");
}
uc_priv->bank_name = str;