dtoc: Fix the value of SetInt()
[oweals/u-boot.git] / tools / dtoc / fdt.py
index 2df2d4b0cc7a67abcfbc60f1624b5e0db4b85467..9ad72f89ec7bffea7ad0dd4effcf2433191075a1 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