projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e56aee1
)
gpio: gpiolib-of.c: make error message more meaningful by adding the node name and...
author
Lothar Waßmann
<LW@KARO-electronics.de>
Wed, 31 Jul 2013 14:12:54 +0000
(16:12 +0200)
committer
Linus Walleij
<linus.walleij@linaro.org>
Fri, 16 Aug 2013 13:26:31 +0000
(15:26 +0200)
Signed-off-by: Lothar Waßmann <LW@KARO-electronics.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpiolib-of.c
patch
|
blob
|
history
diff --git
a/drivers/gpio/gpiolib-of.c
b/drivers/gpio/gpiolib-of.c
index 665f9530c950f96fd4cf54fb70c03edffbcc2ef2..ba9876ffb017ba3c8874512e73acbbf9c97d0cbb 100644
(file)
--- 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;
}