diff options
author | Peng Fan <peng.fan@nxp.com> | 2017-02-06 16:20:53 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2017-03-14 21:27:09 +0800 |
commit | 205d1f74991ec04aad530985e8f008ed272259fe (patch) | |
tree | d97f05b7fcfa5aa5a95d681fecd612fe9198a8d1 /drivers/gpio | |
parent | 8cdc3a1e9cafdd92de2db2cca171ce925e1121a5 (diff) | |
download | u-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/gpio')
-rw-r--r-- | drivers/gpio/74x164_gpio.c | 3 |
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; |