binman: Move the comment for GetFdts() to the base class
authorSimon Glass <sjg@chromium.org>
Thu, 18 Mar 2021 07:25:02 +0000 (20:25 +1300)
committerSimon Glass <sjg@chromium.org>
Fri, 26 Mar 2021 04:03:09 +0000 (17:03 +1300)
Like with other methods this comment should be in the base class. Move it.

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/binman/entry.py
tools/binman/etype/blob_dtb.py

index 507760e2a861b11e442e0add6c6b70506ec05204..be9419584a2a0791c114f8351d4fbe144c9b5690 100644 (file)
@@ -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 {}
index 724647a7bbbec5c43e9ad387068254fb902122e7..3ce7511f6f4cc518557dd88fd621fb319f779b53 100644 (file)
@@ -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]}