From adb67bb94ee16d6284a13320c757460c31149c73 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Thu, 18 Mar 2021 20:25:02 +1300 Subject: 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 --- tools/binman/entry.py | 2 +- tools/binman/etype/blob_dtb.py | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) (limited to 'tools') 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]} -- cgit