From: Dan Carpenter <hidden> Date: 2019-05-03 13:19:14
There was a missing error code in this path. It meant that we returned
ERR_PTR(0) which is NULL and would result in a NULL dereference in the
caller.
Fixes: 1a2d397a6eb5 ("gpio/powerpc: Eliminate duplication of of_get_named_gpio_flags()")
Signed-off-by: Dan Carpenter <redacted>
---
drivers/soc/fsl/qe/gpio.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
@@ -179,8 +179,10 @@ struct qe_pin *qe_pin_request(struct device_node *np, int index)if(err<0)gotoerr0;gc=gpio_to_chip(err);-if(WARN_ON(!gc))+if(WARN_ON(!gc)){+err=-ENODEV;gotoerr0;+}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__);
@@ -179,8 +179,10 @@ struct qe_pin *qe_pin_request(struct device_node *np, int index)if(err<0)gotoerr0;gc=gpio_to_chip(err);-if(WARN_ON(!gc))+if(WARN_ON(!gc)){+err=-ENODEV;gotoerr0;+}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__);--