diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2023-02-28 15:11:06 +0300 |
---|---|---|
committer | Petr Mladek <pmladek@suse.com> | 2023-03-09 11:08:24 +0100 |
commit | 6486a57f05d3d40aa8698908de16feebe52e9f13 (patch) | |
tree | c8c28b4b7c755c296c18202b2bca97f603be77c3 /include/linux/module.h | |
parent | c538944d8efb14e9809b685608490b017bfc2d48 (diff) |
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
Diffstat (limited to 'include/linux/module.h')
-rw-r--r-- | include/linux/module.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/module.h b/include/linux/module.h index 4435ad9439ab..e65a71b04490 100644 --- a/include/linux/module.h +++ b/include/linux/module.h @@ -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 |