of_get_named_gpio_flags used to return 'ret' when no device is found, but 'ret' is zero here. Return an error instead. Signed-off-by: Sascha Hauer <s.hauer@xxxxxxxxxxxxxx> --- drivers/of/of_gpio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/of/of_gpio.c b/drivers/of/of_gpio.c index 1370d8f..6738a22 100644 --- a/drivers/of/of_gpio.c +++ b/drivers/of/of_gpio.c @@ -32,9 +32,9 @@ int of_get_named_gpio_flags(struct device_node *np, const char *propname, dev = of_find_device_by_node(out_args.np); if (!dev) { - pr_err("%s: unable to find device of node %s: %d\n", - __func__, out_args.np->full_name, ret); - return ret; + pr_err("%s: unable to find device of node %s\n", + __func__, out_args.np->full_name); + return -ENODEV; } ret = gpio_get_num(dev, out_args.args[0]); -- 1.9.1 _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox