diff options
Diffstat (limited to 'scripts/kallsyms.c')
-rw-r--r-- | scripts/kallsyms.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kallsyms.c b/scripts/kallsyms.c index 5d554419170b..9ee9bf7fd1a2 100644 --- a/scripts/kallsyms.c +++ b/scripts/kallsyms.c | |||
@@ -158,7 +158,7 @@ static int read_symbol(FILE *in, struct sym_entry *s) | |||
158 | else if (str[0] == '$') | 158 | else if (str[0] == '$') |
159 | return -1; | 159 | return -1; |
160 | /* exclude debugging symbols */ | 160 | /* exclude debugging symbols */ |
161 | else if (stype == 'N') | 161 | else if (stype == 'N' || stype == 'n') |
162 | return -1; | 162 | return -1; |
163 | 163 | ||
164 | /* include the type field in the symbol name, so that it gets | 164 | /* include the type field in the symbol name, so that it gets |