livepatch: fix ELF typos

ELF is acronym.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Reviewed-by: Petr Mladek <pmladek@suse.com>
Signed-off-by: Petr Mladek <pmladek@suse.com>
Link: https://lore.kernel.org/r/Y/3vWjQ/SBA5a0i5@p183
This commit is contained in:
Alexey Dobriyan 2023-02-28 15:11:06 +03:00 committed by Petr Mladek
parent c538944d8e
commit 6486a57f05
3 changed files with 18 additions and 18 deletions

View file

@ -353,9 +353,9 @@ struct mod_kallsyms {
#ifdef CONFIG_LIVEPATCH
/**
* struct klp_modinfo - Elf information preserved from the livepatch module
* struct klp_modinfo - ELF information preserved from the livepatch module
*
* @hdr: Elf header
* @hdr: ELF header
* @sechdrs: Section header table
* @secstrings: String table for the section headers
* @symndx: The symbol table section index
@ -523,7 +523,7 @@ struct module {
bool klp; /* Is this a livepatch module? */
bool klp_alive;
/* Elf information */
/* ELF information */
struct klp_modinfo *klp_info;
#endif