aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-03-18 20:25:02 +1300
committerSimon Glass <sjg@chromium.org>2021-03-22 19:23:29 +1300
commit98c73013eafcf9c409842cd416a4964c48d91f27 (patch)
treedf2bc8e7905da436764b343069c482a9597a8a27
parentee854e89a43dde08de4453e4afcd5cb01e0fee9f (diff)
downloadu-boot-98c73013eafcf9c409842cd416a4964c48d91f27.zip
u-boot-98c73013eafcf9c409842cd416a4964c48d91f27.tar.gz
u-boot-98c73013eafcf9c409842cd416a4964c48d91f27.tar.bz2
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>
-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 507760e..be94195 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 724647a..3ce7511 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]}