]> git.sur5r.net Git - u-boot/blobdiff - lib/libfdt/libfdt.swig
dtoc: Support deleting device tree properties
[u-boot] / lib / libfdt / libfdt.swig
index 26d42fc5d69e4393d70a721d9b67514284566b4b..ce516fddf22613b51f7f73ec7a314bb5a597409d 100644 (file)
@@ -95,3 +95,15 @@ const char *fdt_get_name(const void *fdt, int nodeoffset, int *OUTPUT);
 const char *fdt_string(const void *fdt, int stroffset);
 int fdt_first_subnode(const void *fdt, int offset);
 int fdt_next_subnode(const void *fdt, int offset);
+
+%typemap(in) (void *) {
+  if (!PyByteArray_Check($input)) {
+    SWIG_exception_fail(SWIG_TypeError, "in method '" "$symname" "', argument "
+                       "$argnum"" of type '" "$type""'");
+  }
+  $1 = PyByteArray_AsString($input);
+}
+
+int fdt_delprop(void *fdt, int nodeoffset, const char *name);
+
+const char *fdt_strerror(int errval);