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>
This commit is contained in:
Simon Glass
2022-03-05 20:19:06 -07:00
parent 72e423c6b6
commit b55c11c96e

View File

@@ -185,7 +185,6 @@ class Entry_fit(Entry_section):
self.mkimage = None
def ReadNode(self):
self.ReadEntries()
super().ReadNode()
def _get_operation(self, subnode):