diff options
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/module.c | 2 |
1 files changed, 1 insertions, 1 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 | ||