From: Lothar Waßmann Date: Wed, 31 Jul 2013 14:12:54 +0000 (+0200) Subject: gpio: gpiolib-of.c: make error message more meaningful by adding the node name and... X-Git-Tag: v3.12-rc1~111^2~17 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=eddf8176b57ddb8f960b188eb8796b9d13e4efc0;p=~emulex%2Finfiniband.git gpio: gpiolib-of.c: make error message more meaningful by adding the node name and index Signed-off-by: Lothar Waßmann Signed-off-by: Linus Walleij --- diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c index 665f9530c95..ba9876ffb01 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, ret = of_parse_phandle_with_args(np, propname, "#gpio-cells", index, &gg_data.gpiospec); if (ret) { - pr_debug("%s: can't parse gpios property\n", __func__); + pr_debug("%s: can't parse gpios property of node '%s[%d]'\n", + __func__, np->full_name, index); return ret; }