]> git.sur5r.net Git - u-boot/blobdiff - tools/dtoc/fdt.py
dtoc: Add a 64-bit type and a way to convert cells into 64 bits
[u-boot] / tools / dtoc / fdt.py
index 49409a62ec23380f486c4e8ddc494d071a9adc7c..ffd42ce541d1c8945ddd7712a52a1cee818d1063 100644 (file)
@@ -21,7 +21,7 @@ import libfdt
 # so it is fairly efficient.
 
 # A list of types we support
-(TYPE_BYTE, TYPE_INT, TYPE_STRING, TYPE_BOOL) = range(4)
+(TYPE_BYTE, TYPE_INT, TYPE_STRING, TYPE_BOOL, TYPE_INT64) = range(5)
 
 def CheckErr(errnum, msg):
     if errnum: