diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-27 07:38:26 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-06-02 10:18:20 -0600 |
commit | 160a7664252c937d57caf9bc588519ede6e46a34 (patch) | |
tree | 3252836f52ed097055995c2f233919102eba611b /tools/dtoc/fdt.py | |
parent | 6d804eafc12263fcba423284d453ca9f4fff639f (diff) | |
download | u-boot-160a7664252c937d57caf9bc588519ede6e46a34.tar.gz |
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.py | 4 |
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) |