[Crosstoolchain-logs] [device-tree-compiler] 41/57: pylibfdt: Add stdint include to fix uint32_t

Vagrant Cascadian vagrant at moszumanska.debian.org
Thu Sep 28 22:03:59 UTC 2017


This is an automated email from the git hooks/post-receive script.

vagrant pushed a commit to branch upstream/latest
in repository device-tree-compiler.

commit ab78860f09f5817d5ad7fe3d55d4dad861b75c24
Author: Simon Glass <sjg at chromium.org>
Date:   Mon Aug 14 13:07:28 2017 -0600

    pylibfdt: Add stdint include to fix uint32_t
    
    Some types used by libfdt.h are not understood the Python module since
    they are defined outside it. An example is an attempt to do this:
    
       import libfdt
       result = libfdt.fdt_node_offset_by_phandle(fdt, phandle)
    
    This results in:
    
    TypeError: in method 'fdt_node_offset_by_phandle', argument 2 of
    	type 'uint32_t'
    
    Include the standard integer header file to fix this.
    
    Signed-off-by: Simon Glass <sjg at chromium.org>
    Signed-off-by: David Gibson <david at gibson.dropbear.id.au>
---
 pylibfdt/libfdt.i | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pylibfdt/libfdt.i b/pylibfdt/libfdt.i
index cd1c6a9..c7b79ec 100644
--- a/pylibfdt/libfdt.i
+++ b/pylibfdt/libfdt.i
@@ -52,6 +52,8 @@
 
 %module libfdt
 
+%include <stdint.i>
+
 %{
 #define SWIG_FILE_WITH_INIT
 #include "libfdt.h"

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/crosstoolchain/device-tree-compiler.git



More information about the Crosstoolchain-logs mailing list