diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2023-02-28 15:14:17 +0300 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2023-04-08 13:45:37 -0700 |
commit | 70e79866ab36feaaed8ef26dacfbcbac6a0631c9 (patch) | |
tree | 5a09a13fcaacd9cb0ebf556aaf8a8a0606243570 /sound/soc | |
parent | 2a6772ebf05a9b6bc450e42bbb459f6327f68aca (diff) | |
download | linux-stable-70e79866ab36feaaed8ef26dacfbcbac6a0631c9.tar.gz linux-stable-70e79866ab36feaaed8ef26dacfbcbac6a0631c9.tar.bz2 linux-stable-70e79866ab36feaaed8ef26dacfbcbac6a0631c9.zip |
ELF: fix all "Elf" typos
ELF is acronym and therefore should be spelled in all caps.
I left one exception at Documentation/arm/nwfpe/nwfpe.rst which looks like
being written in the first person.
Link: https://lkml.kernel.org/r/Y/3wGWQviIOkyLJW@p183
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/codecs/rt5677.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/rt5677.c b/sound/soc/codecs/rt5677.c index c26395f42d8e..3bf019b3f700 100644 --- a/sound/soc/codecs/rt5677.c +++ b/sound/soc/codecs/rt5677.c @@ -829,7 +829,7 @@ static int rt5677_parse_and_load_dsp(struct rt5677_priv *rt5677, const u8 *buf, if (strncmp(elf_hdr->e_ident, ELFMAG, sizeof(ELFMAG) - 1)) dev_err(component->dev, "Wrong ELF header prefix\n"); if (elf_hdr->e_ehsize != sizeof(Elf32_Ehdr)) - dev_err(component->dev, "Wrong Elf header size\n"); + dev_err(component->dev, "Wrong ELF header size\n"); if (elf_hdr->e_machine != EM_XTENSA) dev_err(component->dev, "Wrong DSP code file\n"); |