mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
binman: Use correct argument name in docstrings
Use correct argument name in docstrings. Signed-off-by: Jonas Karlman <jonas@kwiboo.se> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
dd4bdad4c1
commit
e389d445c7
3 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue