diff options
author | Gerald Van Baren <vanbaren@cideas.com> | 2007-05-17 23:54:36 -0400 |
---|---|---|
committer | Gerald Van Baren <vanbaren@cideas.com> | 2007-08-10 19:21:36 -0400 |
commit | 9675ee7208ab965d13ea8d8262d77ac4160ef549 (patch) | |
tree | 4b105f86e14e57daf8b4ef5dd2e6a99b1a5efca1 /include/libfdt.h | |
parent | 1a861169bc3758f9de3aead62b058736c6891246 (diff) | |
download | u-boot-9675ee7208ab965d13ea8d8262d77ac4160ef549.zip u-boot-9675ee7208ab965d13ea8d8262d77ac4160ef549.tar.gz u-boot-9675ee7208ab965d13ea8d8262d77ac4160ef549.tar.bz2 |
Add fdt_find_node_by_type() and fdt_find_compatible_node() to LIBFDT
Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
Acked-by: Gerald Van Baren <vanbaren@cideas.com>
Diffstat (limited to 'include/libfdt.h')
-rw-r--r-- | include/libfdt.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/libfdt.h b/include/libfdt.h index e080028..340e89d 100644 --- a/include/libfdt.h +++ b/include/libfdt.h @@ -78,6 +78,12 @@ int fdt_subnode_offset_namelen(const void *fdt, int parentoffset, int fdt_subnode_offset(const void *fdt, int parentoffset, const char *name); int fdt_find_node_by_path(const void *fdt, const char *path); +int fdt_find_node_by_type(const void *fdt, int nodeoffset, const char *type); + +int fdt_node_is_compatible(const void *fdt, int nodeoffset, + const char *compat); +int fdt_find_compatible_node(const void *fdt, int nodeoffset, + const char *type, const char *compat); struct fdt_property *fdt_get_property(const void *fdt, int nodeoffset, const char *name, int *lenp); |