summaryrefslogtreecommitdiff
path: root/tools/dtoc/fdt.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-05-27 16:38:26 +0300
committerSimon Glass <sjg@chromium.org>2017-06-02 19:18:20 +0300
commit160a7664252c937d57caf9bc588519ede6e46a34 (patch)
tree3252836f52ed097055995c2f233919102eba611b /tools/dtoc/fdt.py
parent6d804eafc12263fcba423284d453ca9f4fff639f (diff)
downloadu-boot-160a7664252c937d57caf9bc588519ede6e46a34.tar.xz
fdt: Drop fdt_fallback library
Drop this now-unused library and associated tests. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/dtoc/fdt.py')
-rw-r--r--tools/dtoc/fdt.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/dtoc/fdt.py b/tools/dtoc/fdt.py
index c40b9b6bab..dedd3d7501 100644
--- a/tools/dtoc/fdt.py
+++ b/tools/dtoc/fdt.py
@@ -14,8 +14,8 @@ import fdt_util
# This deals with a device tree, presenting it as an assortment of Node and
# Prop objects, representing nodes and properties, respectively. This file
# contains the base classes and defines the high-level API. Most of the
-# implementation is in the FdtFallback and FdtNormal subclasses. See
-# fdt_select.py for how to create an Fdt object.
+# implementation is in the FdtNormal subclass. See fdt_select.py for how to
+# create an Fdt object.
# A list of types we support
(TYPE_BYTE, TYPE_INT, TYPE_STRING, TYPE_BOOL) = range(4)