projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d56ed5
)
of: Warn if of_graph_get_next_endpoint is called with the root node
author
Philipp Zabel
<
[email protected]
>
Wed, 26 Feb 2014 19:41:09 +0000
(20:41 +0100)
committer
Philipp Zabel
<
[email protected]
>
Thu, 6 Mar 2014 16:41:40 +0000
(17:41 +0100)
If of_graph_get_next_endpoint is given a parentless node instead of an
endpoint node, it is clearly a bug.
Signed-off-by: Philipp Zabel <
[email protected]
>
Acked-by: Tomi Valkeinen <
[email protected]
>
Acked-by: Mauro Carvalho Chehab <
[email protected]
>
Acked-by: Sylwester Nawrocki <
[email protected]
>
drivers/of/base.c
patch
|
blob
|
history
diff --git
a/drivers/of/base.c
b/drivers/of/base.c
index b2f223fa47e9e45bdd5d7b43b52b623be57f1a95..b5e690bd6e9c539f5f33fdeb5521410df1e3afec 100644
(file)
--- a/
drivers/of/base.c
+++ b/
drivers/of/base.c
@@
-2028,8
+2028,8
@@
struct device_node *of_graph_get_next_endpoint(const struct device_node *parent,
of_node_put(node);
} else {
port = of_get_parent(prev);
- if (
!port)
- /* Hm, has someone given us the root node ?... */
+ if (
WARN_ONCE(!port, "%s(): endpoint %s has no parent node\n",
+ __func__, prev->full_name))
return NULL;
/* Avoid dropping prev node refcount to 0. */