aboutsummaryrefslogtreecommitdiff
path: root/libfdt/fdt.c
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2009-02-06 14:01:56 +1100
committerJon Loeliger <jdl@example.com>2009-02-06 11:19:10 -0600
commitce4d9c0f746b21119bc2b5aa5571bb08799a82bd (patch)
tree20f6735160b99f51092c81d89b34a47b57161fea /libfdt/fdt.c
parentbae93e8992fef3cfaff681fe85b26fd35e432e31 (diff)
downloaddtc-ce4d9c0f746b21119bc2b5aa5571bb08799a82bd.zip
dtc-ce4d9c0f746b21119bc2b5aa5571bb08799a82bd.tar.gz
dtc-ce4d9c0f746b21119bc2b5aa5571bb08799a82bd.tar.bz2
libfdt: Rework fdt_next_node()
Currently fdt_next_node() will find the next node in the blob regardless of whether it is above, below or at the same level in the tree as the starting node - the depth parameter is updated to indicate which is the case. When a depth parameter is supplied, this patch makes it instead terminate immediately when it finds the END_NODE tag for a node at depth 0. In this case it returns the offset immediately past the END_NODE tag. This has a couple of advantages. First, this slightly simplifies fdt_subnode_offset(), which no longer needs to explicitly check that fdt_next_node()'s iteration hasn't left the starting node. Second, this allows fdt_next_node() to be used to implement _fdt_node_end_offset() considerably simplifying the latter function. The other users of fdt_next_node() either don't need to iterate out of the starting node, or don't pass a depth parameter at all. Any callers that really need to iterate out of the starting node, but keep tracking depth can do so by biasing the initial depth value. This is a semantic change, but I think it's very unlikely to break any existing library users. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'libfdt/fdt.c')
-rw-r--r--libfdt/fdt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libfdt/fdt.c b/libfdt/fdt.c
index 37085c1..2546b5c 100644
--- a/libfdt/fdt.c
+++ b/libfdt/fdt.c
@@ -162,8 +162,8 @@ int fdt_next_node(const void *fdt, int offset, int *depth)
break;
case FDT_END_NODE:
- if (depth)
- (*depth)--;
+ if (depth && ((--(*depth)) < 0))
+ return nextoffset;
break;
case FDT_END: