dtoc: Fix the value of SetInt()
authorSimon Glass <sjg@chromium.org>
Mon, 1 Oct 2018 18:22:49 +0000 (12:22 -0600)
committerSimon Glass <sjg@chromium.org>
Tue, 9 Oct 2018 10:40:27 +0000 (04:40 -0600)
This does not set the correct value at present. Fix it.

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/dtoc/fdt.py

index 2df2d4b..9ad72f8 100644 (file)
@@ -171,7 +171,7 @@ class Prop:
             val: Integer value (32-bit, single cell)
         """
         self.bytes = struct.pack('>I', val);
-        self.value = val
+        self.value = self.bytes
         self.type = TYPE_INT
         self.dirty = True