diff options
author | Wolfgang Denk <wd@denx.de> | 2007-09-06 22:13:11 (GMT) |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-09-06 22:13:11 (GMT) |
commit | bf72a4ca9e08c9dcd4e6c3201772b565571da0a7 (patch) | |
tree | 6c38e15d26ee62ab9f81fc0d9a090cd8bb21bf31 /include/libfdt.h | |
parent | 041a2554ad619e80dce520c1a33210affcb6a3f2 (diff) | |
parent | e79021223bc339df655e360645a52c457a74b067 (diff) | |
download | u-boot-fsl-qoriq-bf72a4ca9e08c9dcd4e6c3201772b565571da0a7.tar.xz |
Merge with /home/wd/git/u-boot/custodian/u-boot-mpc5xxx
Diffstat (limited to 'include/libfdt.h')
-rw-r--r-- | include/libfdt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libfdt.h b/include/libfdt.h index 340e89d..38c65a9 100644 --- a/include/libfdt.h +++ b/include/libfdt.h @@ -140,6 +140,8 @@ int fdt_setprop(void *fdt, int nodeoffset, const char *name, }) #define fdt_setprop_string(fdt, nodeoffset, name, str) \ fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1) +int fdt_find_and_setprop(void *fdt, const char *node, const char *prop, + const void *val, int len, int create); int fdt_delprop(void *fdt, int nodeoffset, const char *name); int fdt_add_subnode_namelen(void *fdt, int parentoffset, const char *name, int namelen); |