diff options
author | Simon Glass <sjg@chromium.org> | 2020-10-26 17:40:20 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-10-29 14:42:59 -0600 |
commit | 601b69aa8a56168ff25988bbf9cd2d457f13861d (patch) | |
tree | c626d55d0bab042828ade48313d6415bc8779a9a /tools/binman/control.py | |
parent | c1af7a86b380c75c0718c80e1997293913c6095a (diff) |
binman: Drop the Entry.CheckSize() method
This is only used by entry_Section and that class already calls it. Avoid
calling it twice. Also drop it from the documentation.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/control.py')
-rw-r--r-- | tools/binman/control.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/binman/control.py b/tools/binman/control.py index 26f1cf462ec..9eeac5db995 100644 --- a/tools/binman/control.py +++ b/tools/binman/control.py @@ -513,7 +513,6 @@ def ProcessImage(image, update_fdt, write_map, get_contents=True, for pack_pass in range(passes): try: image.PackEntries() - image.CheckSize() image.CheckEntries() except Exception as e: if write_map: |