From: Simon Glass Date: Fri, 10 Jul 2020 00:39:27 +0000 (-0600) Subject: binman: cbfs: Fix IFWI typo X-Git-Tag: v2020.10~104^2~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ccbe7dbc3f0ac390fa94f86d21f4ce620738523c;p=platform%2Fkernel%2Fu-boot.git binman: cbfs: Fix IFWI typo This comment references the wrong thing. Fix it. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/tools/binman/etype/cbfs.py b/tools/binman/etype/cbfs.py index e9aed83..744a32f 100644 --- a/tools/binman/etype/cbfs.py +++ b/tools/binman/etype/cbfs.py @@ -204,7 +204,7 @@ class Entry_cbfs(Entry): return True def _ReadSubnodes(self): - """Read the subnodes to find out what should go in this IFWI""" + """Read the subnodes to find out what should go in this CBFS""" for node in self._node.subnodes: entry = Entry.Create(self, node) entry.ReadNode()