diff options
author | Gerald Van Baren <vanbaren@cideas.com> | 2007-03-31 12:13:43 -0400 |
---|---|---|
committer | Gerald Van Baren <vanbaren@cideas.com> | 2007-03-31 12:13:43 -0400 |
commit | 3af0d587d93e0be5f96e1b30fa41e662f8b0803e (patch) | |
tree | aff9722cacec7ea01fc4a8464df5a2dfce39f703 /libfdt/fdt_rw.c | |
parent | fa3a74cec73dfd06a5ae35a9a3368200273aaa71 (diff) | |
download | u-boot-3af0d587d93e0be5f96e1b30fa41e662f8b0803e.tar.gz u-boot-3af0d587d93e0be5f96e1b30fa41e662f8b0803e.tar.xz u-boot-3af0d587d93e0be5f96e1b30fa41e662f8b0803e.zip |
libfdt: Enhanced and published fdt_next_tag()
Enhanced the formerly private function _fdt_next_tag() to allow stepping
through the tree, used to produce a human-readable dump, and made
it part of the published interface.
Also added some comments.
Diffstat (limited to 'libfdt/fdt_rw.c')
-rw-r--r-- | libfdt/fdt_rw.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libfdt/fdt_rw.c b/libfdt/fdt_rw.c index 7396645a69..b33fbf45de 100644 --- a/libfdt/fdt_rw.c +++ b/libfdt/fdt_rw.c @@ -145,7 +145,7 @@ static int _add_property(void *fdt, int nodeoffset, const char *name, int len, int namestroff; int err; - tag = _fdt_next_tag(fdt, nodeoffset, &nextoffset); + tag = fdt_next_tag(fdt, nodeoffset, &nextoffset, NULL); if (tag != FDT_BEGIN_NODE) return -FDT_ERR_BADOFFSET; @@ -219,10 +219,10 @@ int fdt_add_subnode_namelen(void *fdt, int parentoffset, return offset; /* Try to place the new node after the parent's properties */ - _fdt_next_tag(fdt, parentoffset, &nextoffset); /* skip the BEGIN_NODE */ + fdt_next_tag(fdt, parentoffset, &nextoffset, NULL); /* skip the BEGIN_NODE */ do { offset = nextoffset; - tag = _fdt_next_tag(fdt, offset, &nextoffset); + tag = fdt_next_tag(fdt, offset, &nextoffset, NULL); } while (tag == FDT_PROP); nh = _fdt_offset_ptr(fdt, offset); |