public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] libfdt: Fix build with swig 4.3.0
@ 2024-10-26 12:34 Rudi Heitbaum
  2024-10-29 12:52 ` Xi Ruoyao
  0 siblings, 1 reply; 5+ messages in thread
From: Rudi Heitbaum @ 2024-10-26 12:34 UTC (permalink / raw)
  To: u-boot; +Cc: rudi

Call SWIG_AppendOutput instead of SWIG_Python_AppendOutput so that
is_void is handled within swig.

Link: https://github.com/swig/swig/commit/cd39cf132c96a0887be07c826b80804d7677a701

Signed-off-by: Rudi Heitbaum <rudi@heitbaum.com>
---
 scripts/dtc/pylibfdt/libfdt.i_shipped | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/dtc/pylibfdt/libfdt.i_shipped b/scripts/dtc/pylibfdt/libfdt.i_shipped
index 56cc5d48f4..e4659489a9 100644
--- a/scripts/dtc/pylibfdt/libfdt.i_shipped
+++ b/scripts/dtc/pylibfdt/libfdt.i_shipped
@@ -1037,7 +1037,7 @@ typedef uint32_t fdt32_t;
 			fdt_string(fdt1, fdt32_to_cpu($1->nameoff)));
 		buff = PyByteArray_FromStringAndSize(
 			(const char *)($1 + 1), fdt32_to_cpu($1->len));
-		resultobj = SWIG_Python_AppendOutput(resultobj, buff);
+		resultobj = SWIG_AppendOutput(resultobj, buff);
 	}
 }
 
@@ -1076,7 +1076,7 @@ typedef uint32_t fdt32_t;
 
 %typemap(argout) int *depth {
         PyObject *val = Py_BuildValue("i", *arg$argnum);
-        resultobj = SWIG_Python_AppendOutput(resultobj, val);
+        resultobj = SWIG_AppendOutput(resultobj, val);
 }
 
 %apply int *depth { int *depth };
@@ -1092,7 +1092,7 @@ typedef uint32_t fdt32_t;
            if (PyTuple_GET_SIZE(resultobj) == 0)
               resultobj = val;
            else
-              resultobj = SWIG_Python_AppendOutput(resultobj, val);
+              resultobj = SWIG_AppendOutput(resultobj, val);
         }
 }
 
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-11-06  3:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-26 12:34 [PATCH] libfdt: Fix build with swig 4.3.0 Rudi Heitbaum
2024-10-29 12:52 ` Xi Ruoyao
2024-10-30  1:08   ` David Gibson
2024-10-31 12:36     ` Rob Herring
2024-11-06  3:24       ` David Gibson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox