From: Simon Glass Date: Sun, 6 Mar 2022 03:19:06 +0000 (-0700) Subject: binman: Read the fit entries only once X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=b55c11c96ec8789cd843f7c79c90b05ae9e0fadf;p=u-boot.git 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 Reviewed-by: Alper Nebi Yasak --- diff --git a/tools/binman/etype/fit.py b/tools/binman/etype/fit.py index 1b93044d09..9bc25888e8 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):