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/libfdt_internal.h | |
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/libfdt_internal.h')
-rw-r--r-- | libfdt/libfdt_internal.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libfdt/libfdt_internal.h b/libfdt/libfdt_internal.h index 124bef78e9..cc9633c9e1 100644 --- a/libfdt/libfdt_internal.h +++ b/libfdt/libfdt_internal.h @@ -27,7 +27,6 @@ #define streq(p, q) (strcmp((p), (q)) == 0) int _fdt_check_header(const void *fdt); -uint32_t _fdt_next_tag(const void *fdt, int startoffset, int *nextoffset); const char *_fdt_find_string(const char *strtab, int tabsize, const char *s); int _fdt_node_end_offset(void *fdt, int nodeoffset); |