diff options
Diffstat (limited to 'scripts/mod/modpost.c')
-rw-r--r-- | scripts/mod/modpost.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 | ||
1147 | static inline int is_arm_mapping_symbol(const char *str) | 1147 | static 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 | ||