Fix 'notes' typos
authorAnatolij Gustschin <agust@denx.de>
Fri, 18 Aug 2017 15:58:51 +0000 (17:58 +0200)
committerTom Rini <trini@konsulko.com>
Sun, 20 Aug 2017 13:54:34 +0000 (09:54 -0400)
s/notes/nodes

Signed-off-by: Anatolij Gustschin <agust@denx.de>
lib/Kconfig
tools/dtoc/dtb_platdata.py

index 81636172bce44996cea9ac4db7bb146623de0903..d73052db687626450208c1072622267292e5bf62 100644 (file)
@@ -185,7 +185,7 @@ config OF_LIBFDT
        help
          This enables the FDT library (libfdt). It provides functions for
          accessing binary device tree images in memory, such as adding and
-         removing notes and properties, scanning through the tree and finding
+         removing nodes and properties, scanning through the tree and finding
          particular compatible nodes. The library operates on a flattened
          version of the device tree.
 
@@ -200,7 +200,7 @@ config SPL_OF_LIBFDT
        help
          This enables the FDT library (libfdt). It provides functions for
          accessing binary device tree images in memory, such as adding and
-         removing notes and properties, scanning through the tree and finding
+         removing nodes and properties, scanning through the tree and finding
          particular compatible nodes. The library operates on a flattened
          version of the device tree.
 
index 1f85343a9fd2de7532b5f032c7939e20ec5f5df2..041a33188ff9e8ecae75d8f62ff6646185894cb9 100644 (file)
@@ -197,7 +197,7 @@ class DtbPlatdata(object):
         return lines
 
     def scan_dtb(self):
-        """Scan the device tree to obtain a tree of notes and properties
+        """Scan the device tree to obtain a tree of nodes and properties
 
         Once this is done, self._fdt.GetRoot() can be called to obtain the
         device tree root node, and progress from there.