mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
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>
This commit is contained in:
parent
cb8bebbde0
commit
adb67bb94e
2 changed files with 1 additions and 10 deletions
|
@ -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 {}
|
||||
|
|
|
@ -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]}
|
||||
|
||||
|
|
Loading…
Reference in a new issue