diff options
author | Takashi Iwai <tiwai@suse.de> | 2023-07-20 16:16:11 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2023-07-20 16:16:11 +0300 |
commit | 5f69c65e07b99ceb113d304fe31e0c653eb1c4bc (patch) | |
tree | 8b003c6d54a1a7590a09603ff94e6a8e85bf6cba /scripts | |
parent | de90f5165b1cda3f1b5975165e2da8a69dfae1d6 (diff) | |
parent | 269f399dc19f0e5c51711c3ba3bd06e0ef6ef403 (diff) | |
download | linux-5f69c65e07b99ceb113d304fe31e0c653eb1c4bc.tar.xz |
Merge tag 'asoc-fix-v6.5-rc1-2' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v6.5
A few more fixes for v6.5, just small driver specific ones.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kallsyms.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/kallsyms.c b/scripts/kallsyms.c index d387c9381650..16c87938b316 100644 --- a/scripts/kallsyms.c +++ b/scripts/kallsyms.c @@ -349,10 +349,10 @@ static void cleanup_symbol_name(char *s) * ASCII[_] = 5f * ASCII[a-z] = 61,7a * - * As above, replacing '.' with '\0' does not affect the main sorting, - * but it helps us with subsorting. + * As above, replacing the first '.' in ".llvm." with '\0' does not + * affect the main sorting, but it helps us with subsorting. */ - p = strchr(s, '.'); + p = strstr(s, ".llvm."); if (p) *p = '\0'; } |