From: Simon Glass Date: Sun, 6 Mar 2022 03:19:06 +0000 (-0700) Subject: binman: Read the fit entries only once X-Git-Tag: baikal/mips/sdk5.9~3^2~124^2~11^2~6 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=562cbd40f0d68e3326f1cf8adc56ca55a78a0759;p=uboot.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):