]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
binman: Use correct argument name in docstrings
authorJonas Karlman <jonas@kwiboo.se>
Sun, 19 Feb 2023 22:02:04 +0000 (22:02 +0000)
committerSimon Glass <sjg@chromium.org>
Wed, 8 Mar 2023 19:38:48 +0000 (11:38 -0800)
Use correct argument name in docstrings.

Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Reviewed-by: Simon Glass <sjg@chromium.org>
tools/binman/entry.py
tools/binman/etype/blob.py
tools/binman/etype/section.py

index fd617e4f15f2a4e966e04b5a7351c8628aae32dd..11aa8e50d4a2e890d821ef2cca1892bf251be860 100644 (file)
@@ -1111,7 +1111,7 @@ features to produce new behaviours.
         If there are faked blobs, the entries are added to the list
 
         Args:
-            fake_blobs_list: List of Entry objects to be added to
+            faked_blobs_list: List of Entry objects to be added to
         """
         # This is meaningless for anything other than blobs
         pass
index c7ddcedffb822caad250ba77c5569bfec52cb980..a80741e3633866c1f59b6818c54fea06e6b4689f 100644 (file)
@@ -102,7 +102,7 @@ class Entry_blob(Entry):
         If there are faked blobs, the entries are added to the list
 
         Args:
-            fake_blobs_list: List of Entry objects to be added to
+            faked_blobs_list: List of Entry objects to be added to
         """
         if self.faked:
             faked_blobs_list.append(self)
index 8bf5aa437d1a8326fdfe4baeab736bdf6502d237..d3926f791c7288e1bffd81213baa1fbc8c124478 100644 (file)
@@ -885,7 +885,7 @@ class Entry_section(Entry):
         """Set whether a section allows to create a fake blob
 
         Args:
-            allow_fake_blob: True if allowed, False if not allowed
+            allow_fake: True if allowed, False if not allowed
         """
         super().SetAllowFakeBlob(allow_fake)
         for entry in self._entries.values():
@@ -909,7 +909,7 @@ class Entry_section(Entry):
         If there are faked blobs, the entries are added to the list
 
         Args:
-            fake_blobs_list: List of Entry objects to be added to
+            faked_blobs_list: List of Entry objects to be added to
         """
         for entry in self._entries.values():
             entry.CheckFakedBlobs(faked_blobs_list)