summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-03-18 20:25:02 +1300
committerSimon Glass <sjg@chromium.org>2021-03-26 17:03:09 +1300
commitadb67bb94ee16d6284a13320c757460c31149c73 (patch)
treeae502e9599a3a953db0a18ac0e209f90ca1ad8b6 /tools
parentcb8bebbde09c762cc09d2d1a387dc6b3c4434853 (diff)
downloadu-boot-adb67bb94ee16d6284a13320c757460c31149c73.tar.gz
u-boot-adb67bb94ee16d6284a13320c757460c31149c73.tar.xz
u-boot-adb67bb94ee16d6284a13320c757460c31149c73.zip
binman: Move the comment for GetFdts() to the base class
Like with other methods this comment should be in the base class. Move it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/binman/entry.py2
-rw-r--r--tools/binman/etype/blob_dtb.py9
2 files changed, 1 insertions, 10 deletions
diff --git a/tools/binman/entry.py b/tools/binman/entry.py
index 507760e2a8..be9419584a 100644
--- a/tools/binman/entry.py
+++ b/tools/binman/entry.py
@@ -205,7 +205,7 @@ class Entry(object):
Dict:
key: Filename from this entry (without the path)
value: Tuple:
- Fdt object for this dtb, or None if not available
+ Entry object for this dtb
Filename of file containing this dtb
"""
return {}
diff --git a/tools/binman/etype/blob_dtb.py b/tools/binman/etype/blob_dtb.py
index 724647a7bb..3ce7511f6f 100644
--- a/tools/binman/etype/blob_dtb.py
+++ b/tools/binman/etype/blob_dtb.py
@@ -44,15 +44,6 @@ class Entry_blob_dtb(Entry_blob):
return None
def GetFdts(self):
- """Get the device trees used by this entry
-
- Returns:
- Dict:
- key: Filename from this entry (without the path)
- value: Tuple:
- Fdt object for this dtb, or None if not available
- Filename of file containing this dtb
- """
fname = self.GetDefaultFilename()
return {self.GetFdtEtype(): [self, fname]}