diff options
author | Simon Glass <sjg@chromium.org> | 2025-03-28 07:02:08 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-04-10 11:57:53 -0600 |
commit | 5a7ad313a12e9667001a926f55c9e4516f128638 (patch) | |
tree | 1f5efaca1383f8568dc4350ee88a430379cc91e1 /tools/binman/elf.py | |
parent | 774e966f293c552f29a57d9ad7b620e6f334aad9 (diff) |
binman: Fix a typo in elf.py
Fix an 'EFL' typo. It should be 'ELF'.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Neha Malcom Francis <n-francis@ti.com>
Diffstat (limited to 'tools/binman/elf.py')
-rw-r--r-- | tools/binman/elf.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |