From: Simon Glass <sjg@chromium.org>
Date: Fri, 6 Jul 2018 16:27:32 +0000 (-0600)
Subject: dtoc: Fix some minor errors
X-Git-Tag: v2025.01-rc5-pxa1908~4005^2~10
X-Git-Url: http://git.dujemihanovic.xyz/img/html/static/login.html?a=commitdiff_plain;h=dfe5f5b97d369b0fcf24c792b0fc83661aa24afa;p=u-boot.git

dtoc: Fix some minor errors

Fix some comments and a printf string which is incorrect.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

diff --git a/tools/dtoc/dtb_platdata.py b/tools/dtoc/dtb_platdata.py
index b1323aef19..6cb1259446 100644
--- a/tools/dtoc/dtb_platdata.py
+++ b/tools/dtoc/dtb_platdata.py
@@ -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)' %
diff --git a/tools/dtoc/dtoc.py b/tools/dtoc/dtoc.py
index c891b06380..2e6a4db8bc 100755
--- a/tools/dtoc/dtoc.py
+++ b/tools/dtoc/dtoc.py
@@ -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
 
diff --git a/tools/dtoc/fdt.py b/tools/dtoc/fdt.py
index c1d04d48e8..e7703c1c75 100644
--- a/tools/dtoc/fdt.py
+++ b/tools/dtoc/fdt.py
@@ -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