aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio/gpiolib-of.c
diff options
context:
space:
mode:
authorLothar Waßmann <LW@KARO-electronics.de>2013-07-31 10:12:54 -0400
committerLinus Walleij <linus.walleij@linaro.org>2013-08-16 09:26:31 -0400
commiteddf8176b57ddb8f960b188eb8796b9d13e4efc0 (patch)
treed42cbc3e56402c34a90c75a8e21a7956623d82b4 /drivers/gpio/gpiolib-of.c
parente56aee1897fd27631c1cb28e12b0fb8f8f9736f7 (diff)
gpio: gpiolib-of.c: make error message more meaningful by adding the node name and index
Signed-off-by: Lothar Waßmann <LW@KARO-electronics.de> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpiolib-of.c')
-rw-r--r--drivers/gpio/gpiolib-of.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c
index 665f9530c950..ba9876ffb017 100644
--- a/drivers/gpio/gpiolib-of.c
+++ b/drivers/gpio/gpiolib-of.c
@@ -76,7 +76,8 @@ int of_get_named_gpio_flags(struct device_node *np, const char *propname,
76 ret = of_parse_phandle_with_args(np, propname, "#gpio-cells", index, 76 ret = of_parse_phandle_with_args(np, propname, "#gpio-cells", index,
77 &gg_data.gpiospec); 77 &gg_data.gpiospec);
78 if (ret) { 78 if (ret) {
79 pr_debug("%s: can't parse gpios property\n", __func__); 79 pr_debug("%s: can't parse gpios property of node '%s[%d]'\n",
80 __func__, np->full_name, index);
80 return ret; 81 return ret;
81 } 82 }
82 83