From: Alexandre Courbot Date: Fri, 29 Jun 2012 04:57:59 +0000 (+0900) Subject: gpio: propagate of_parse_phandle_with_args errors X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=41920d16360ebc8c482911078a17d9994fb77612;p=openwrt%2Fstaging%2Fblogic.git gpio: propagate of_parse_phandle_with_args errors Make of_get_named_gpio_flags propagate any error it receives from of_parse_phandle_with_args instead of inconditionally returning -EINVAL. Signed-off-by: Alexandre Courbot Signed-off-by: Linus Walleij --- diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c index 8389d4a0ec45..a71aecac451f 100644 --- a/drivers/gpio/gpiolib-of.c +++ b/drivers/gpio/gpiolib-of.c @@ -73,7 +73,7 @@ int of_get_named_gpio_flags(struct device_node *np, const char *propname, &gg_data.gpiospec); if (ret) { pr_debug("%s: can't parse gpios property\n", __func__); - return -EINVAL; + return ret; } gpiochip_find(&gg_data, of_gpiochip_find_and_xlate);