aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kernel/module.c2
-rw-r--r--scripts/kallsyms.c2
-rw-r--r--scripts/mod/modpost.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/kernel/module.c b/kernel/module.c
index 03214bd288e9..3d52936031cc 100644
--- a/kernel/module.c
+++ b/kernel/module.c
@@ -3388,7 +3388,7 @@ static inline int is_arm_mapping_symbol(const char *str)
3388{ 3388{
3389 if (str[0] == '.' && str[1] == 'L') 3389 if (str[0] == '.' && str[1] == 'L')
3390 return true; 3390 return true;
3391 return str[0] == '$' && strchr("atd", str[1]) 3391 return str[0] == '$' && strchr("axtd", str[1])
3392 && (str[2] == '\0' || str[2] == '.'); 3392 && (str[2] == '\0' || str[2] == '.');
3393} 3393}
3394 3394
diff --git a/scripts/kallsyms.c b/scripts/kallsyms.c
index dc7aa45e80ce..c6d33bd15b04 100644
--- a/scripts/kallsyms.c
+++ b/scripts/kallsyms.c
@@ -84,7 +84,7 @@ static void usage(void)
84 */ 84 */
85static inline int is_arm_mapping_symbol(const char *str) 85static inline int is_arm_mapping_symbol(const char *str)
86{ 86{
87 return str[0] == '$' && strchr("atd", str[1]) 87 return str[0] == '$' && strchr("axtd", str[1])
88 && (str[2] == '\0' || str[2] == '.'); 88 && (str[2] == '\0' || str[2] == '.');
89} 89}
90 90
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
index 091d90573b63..3017ec20e9f8 100644
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -1146,7 +1146,7 @@ static Elf_Sym *find_elf_symbol(struct elf_info *elf, Elf64_Sword addr,
1146 1146
1147static inline int is_arm_mapping_symbol(const char *str) 1147static inline int is_arm_mapping_symbol(const char *str)
1148{ 1148{
1149 return str[0] == '$' && strchr("atd", str[1]) 1149 return str[0] == '$' && strchr("axtd", str[1])
1150 && (str[2] == '\0' || str[2] == '.'); 1150 && (str[2] == '\0' || str[2] == '.');
1151} 1151}
1152 1152