Signed-off-by: Sascha Hauer <s.hauer@xxxxxxxxxxxxxx> --- drivers/of/base.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/of/base.c b/drivers/of/base.c index 3e91e36..69fbf9a 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c @@ -491,6 +491,9 @@ struct device_node *of_find_node_by_path(const char *path) { struct device_node *np; + if (!strcmp(path, "/")) + return root_node; + list_for_each_entry(np, &allnodes, list) { if (np->full_name && (strcmp(np->full_name, path) == 0)) return np; -- 1.7.10.4 _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox