summaryrefslogtreecommitdiff
path: root/tools/dtoc/fdt_select.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/dtoc/fdt_select.py')
-rw-r--r--tools/dtoc/fdt_select.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/tools/dtoc/fdt_select.py b/tools/dtoc/fdt_select.py
index 54a3ef2..d6337ea 100644
--- a/tools/dtoc/fdt_select.py
+++ b/tools/dtoc/fdt_select.py
@@ -6,13 +6,11 @@
# SPDX-License-Identifier: GPL-2.0+
#
-# Bring in either the normal fdt library (which relies on libfdt) or the
-# fallback one (which uses fdtget and is slower). Both provide the same
-# interface for this file to use.
-import fdt_normal
+# Bring in the normal fdt library (which relies on libfdt)
+import fdt
def FdtScan(fname):
"""Returns a new Fdt object from the implementation we are using"""
- dtb = fdt_normal.FdtNormal(fname)
+ dtb = fdt.Fdt(fname)
dtb.Scan()
return dtb