diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2016-07-05 08:26:42 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-08-20 15:35:03 (GMT) |
commit | 2b941bf96dd66a5730f1dcbcb635e28930aa58fa (patch) | |
tree | bc164edae4759bf0cf5c68b348467a9d13ee8949 | |
parent | 8e9685715bf78421da48a84040aba3801f66bf47 (diff) | |
download | u-boot-2b941bf96dd66a5730f1dcbcb635e28930aa58fa.tar.xz |
libfdt: Add fdt_getprop_namelen_w
Add a function to retrieve a writeable property only by the first
characters of its name.
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
-rw-r--r-- | include/libfdt.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/libfdt.h b/include/libfdt.h index f13b01f..a55d2d0 100644 --- a/include/libfdt.h +++ b/include/libfdt.h @@ -619,6 +619,13 @@ const void *fdt_getprop_by_offset(const void *fdt, int offset, */ const void *fdt_getprop_namelen(const void *fdt, int nodeoffset, const char *name, int namelen, int *lenp); +static inline void *fdt_getprop_namelen_w(void *fdt, int nodeoffset, + const char *name, int namelen, + int *lenp) +{ + return (void *)(uintptr_t)fdt_getprop_namelen(fdt, nodeoffset, name, + namelen, lenp); +} /** * fdt_getprop - retrieve the value of a given property |