[rtems commit] pylibfdt: Add functions to update properties
Sebastian Huber
sebh at rtems.org
Thu Jul 19 05:07:42 UTC 2018
Module: rtems
Branch: master
Commit: 3848f14be42ef28a5f00b1ebab861ecfe06148c1
Changeset: http://git.rtems.org/rtems/commit/?id=3848f14be42ef28a5f00b1ebab861ecfe06148c1
Author: Simon Glass <sjg at chromium.org>
Date: Wed Jun 6 15:37:05 2018 -0600
pylibfdt: Add functions to update properties
Allow updating and creating properties, including special methods for
integers.
Signed-off-by: Simon Glass <sjg at chromium.org>
Reviewed-by: David Gibson <david at gibson.dropbear.id.au>
Signed-off-by: David Gibson <david at gibson.dropbear.id.au>
---
cpukit/include/libfdt.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/cpukit/include/libfdt.h b/cpukit/include/libfdt.h
index 79e4d82..c99d28f 100644
--- a/cpukit/include/libfdt.h
+++ b/cpukit/include/libfdt.h
@@ -1345,10 +1345,13 @@ static inline int fdt_property_u64(void *fdt, const char *name, uint64_t val)
fdt64_t tmp = cpu_to_fdt64(val);
return fdt_property(fdt, name, &tmp, sizeof(tmp));
}
+
+#ifndef SWIG /* Not available in Python */
static inline int fdt_property_cell(void *fdt, const char *name, uint32_t val)
{
return fdt_property_u32(fdt, name, val);
}
+#endif
/**
* fdt_property_placeholder - add a new property and return a ptr to its value
More information about the vc
mailing list