soc/fsl/qe: Fix an error code in qe_pin_request()
We forgot to set "err" on this error path.
Fixes: 1a2d397a6e
("gpio/powerpc: Eliminate duplication of of_get_named_gpio_flags()")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Li Yang <leoyang.li@nxp.com>
This commit is contained in:
parent
9e98c678c2
commit
5674a92ca4
|
@ -179,8 +179,10 @@ struct qe_pin *qe_pin_request(struct device_node *np, int index)
|
|||
if (err < 0)
|
||||
goto err0;
|
||||
gc = gpio_to_chip(err);
|
||||
if (WARN_ON(!gc))
|
||||
if (WARN_ON(!gc)) {
|
||||
err = -ENODEV;
|
||||
goto err0;
|
||||
}
|
||||
|
||||
if (!of_device_is_compatible(gc->of_node, "fsl,mpc8323-qe-pario-bank")) {
|
||||
pr_debug("%s: tried to get a non-qe pin\n", __func__);
|
||||
|
|
Loading…
Reference in New Issue