]> git.sur5r.net Git - u-boot/commitdiff
dtoc: Fix some minor errors
authorSimon Glass <sjg@chromium.org>
Fri, 6 Jul 2018 16:27:32 +0000 (10:27 -0600)
committerSimon Glass <sjg@chromium.org>
Mon, 9 Jul 2018 15:11:00 +0000 (09:11 -0600)
Fix some comments and a printf string which is incorrect.

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

index b1323aef1982ac5509d9dc30db454e9c7e55ca12..6cb125944660ca090e224b35b94a4bbf9c4981bf 100644 (file)
@@ -316,7 +316,8 @@ class DtbPlatdata(object):
             total = na + ns
 
             if reg.type != fdt.TYPE_INT:
-                raise ValueError("Node '%s' reg property is not an int")
+                raise ValueError("Node '%s' reg property is not an int" %
+                                 node.name)
             if len(reg.value) % total:
                 raise ValueError("Node '%s' reg property has %d cells "
                         'which is not a multiple of na + ns = %d + %d)' %
index c891b063800d9c6f78226bdf354cfcab2cd8b5b5..2e6a4db8bc1b16480cbf2fe2bcfb5d2aaa1e722e 100755 (executable)
@@ -40,8 +40,8 @@ def run_tests(args):
     """Run all the test we have for dtoc
 
     Args:
-        args: List of positional args provided to binman. This can hold a test
-            name to execute (as in 'binman -t testSections', for example)
+        args: List of positional args provided to dtoc. This can hold a test
+            name to execute (as in 'dtoc -t test_empty_file', for example)
     """
     import test_dtoc
 
index c1d04d48e889699159e38576d76c53db75fe2b93..e7703c1c7538dc2da5ea60d3962840b026536144 100644 (file)
@@ -428,7 +428,7 @@ class Fdt:
         return node
 
 def FdtScan(fname):
-    """Returns a new Fdt object from the implementation we are using"""
+    """Returns a new Fdt object"""
     dtb = Fdt(fname)
     dtb.Scan()
     return dtb