gpio: Fix debug message in of_get_named_gpio_flags()
authorThierry Reding <thierry.reding@avionic-design.de>
Thu, 9 Aug 2012 06:38:43 +0000 (08:38 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 17 Aug 2012 05:35:25 +0000 (07:35 +0200)
This was probably missed in the conversion done in commit 3d0f7cf
("gpio: Adjust of_xlate API to support multiple GPIO chips").

Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpiolib-of.c

index a18c4aa..f1a4599 100644 (file)
@@ -82,7 +82,7 @@ int of_get_named_gpio_flags(struct device_node *np, const char *propname,
        gpiochip_find(&gg_data, of_gpiochip_find_and_xlate);
 
        of_node_put(gg_data.gpiospec.np);
-       pr_debug("%s exited with status %d\n", __func__, ret);
+       pr_debug("%s exited with status %d\n", __func__, gg_data.out_gpio);
        return gg_data.out_gpio;
 }
 EXPORT_SYMBOL(of_get_named_gpio_flags);