summaryrefslogtreecommitdiff
path: root/include/libfdt.h
diff options
context:
space:
mode:
authorMaxime Ripard <maxime.ripard@free-electrons.com>2016-07-05 10:26:42 +0200
committerTom Rini <trini@konsulko.com>2016-08-20 11:35:03 -0400
commit2b941bf96dd66a5730f1dcbcb635e28930aa58fa (patch)
treebc164edae4759bf0cf5c68b348467a9d13ee8949 /include/libfdt.h
parent8e9685715bf78421da48a84040aba3801f66bf47 (diff)
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>
Diffstat (limited to 'include/libfdt.h')
-rw-r--r--include/libfdt.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/libfdt.h b/include/libfdt.h
index f13b01f08f..a55d2d0d8c 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