summaryrefslogtreecommitdiffstats
path: root/commands/of_node.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-02-25 10:04:59 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2013-03-06 11:41:28 +0100
commitb26b7ef0f04d823e70f57684c8ee01277ade572a (patch)
tree135746b39e2ba4b6b68f7e4b8ad6829dd71a8968 /commands/of_node.c
parent8a185a4ff2283c670ffc8724c1b7bdbf8d458cbe (diff)
downloadbarebox-b26b7ef0f04d823e70f57684c8ee01277ade572a.tar.gz
barebox-b26b7ef0f04d823e70f57684c8ee01277ade572a.tar.xz
of: Add root node argument to of_find_node_by_path
This makes of_find_node_by_path usable with multiple trees. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands/of_node.c')
-rw-r--r--commands/of_node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/of_node.c b/commands/of_node.c
index bf9799caa8..2f6ecae33e 100644
--- a/commands/of_node.c
+++ b/commands/of_node.c
@@ -79,7 +79,7 @@ static int do_of_node(int argc, char *argv[])
if (!path)
return COMMAND_ERROR_USAGE;
- node = of_find_node_by_path(path);
+ node = of_find_node_by_path(root, path);
if (!node) {
printf("Cannot find nodepath %s\n", path);
return -ENOENT;