diff options
author | Simon Glass | 2022-03-05 20:19:06 -0700 |
---|---|---|
committer | Simon Glass | 2022-03-18 19:24:25 -0600 |
commit | b55c11c96ec8789cd843f7c79c90b05ae9e0fadf (patch) | |
tree | b1a20b669cf8276318e09b7fb8aa8e6cbb428a66 /tools | |
parent | 72e423c6b6664ff77b46c732f8d7e2e173b3b5fe (diff) |
binman: Read the fit entries only once
At present the entries are read twice, once by the entry_Section class
and once by the FIT implementation. This is harmless but can be confusing
when debugging. Fix it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/binman/etype/fit.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/binman/etype/fit.py b/tools/binman/etype/fit.py index 1b93044d09d..9bc25888e86 100644 --- a/tools/binman/etype/fit.py +++ b/tools/binman/etype/fit.py @@ -185,7 +185,6 @@ class Entry_fit(Entry_section): self.mkimage = None def ReadNode(self): - self.ReadEntries() super().ReadNode() def _get_operation(self, subnode): |