From: Simon Glass Date: Fri, 28 Mar 2025 13:02:08 +0000 (-0600) Subject: binman: Fix a typo in elf.py X-Git-Tag: v2025.07-rc1~98 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a7ad313a12e9667001a926f55c9e4516f128638;p=pandora-u-boot.git binman: Fix a typo in elf.py Fix an 'EFL' typo. It should be 'ELF'. Signed-off-by: Simon Glass Reviewed-by: Neha Malcom Francis --- diff --git a/tools/binman/elf.py b/tools/binman/elf.py index c75f4478813..6ac960e0419 100644 --- a/tools/binman/elf.py +++ b/tools/binman/elf.py @@ -28,7 +28,7 @@ except: # pragma: no cover # BSYM in little endian, keep in sync with include/binman_sym.h BINMAN_SYM_MAGIC_VALUE = 0x4d595342 -# Information about an EFL symbol: +# Information about an ELF symbol: # section (str): Name of the section containing this symbol # address (int): Address of the symbol (its value) # size (int): Size of the symbol in bytes