diff options
Diffstat (limited to 'scripts/kallsyms.c')
-rw-r--r-- | scripts/kallsyms.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/kallsyms.c b/scripts/kallsyms.c index 5d20a2e24cd1..ad2434b26970 100644 --- a/scripts/kallsyms.c +++ b/scripts/kallsyms.c | |||
@@ -108,6 +108,9 @@ static int read_symbol(FILE *in, struct sym_entry *s) | |||
108 | /* exclude also MIPS ELF local symbols ($L123 instead of .L123) */ | 108 | /* exclude also MIPS ELF local symbols ($L123 instead of .L123) */ |
109 | else if (str[0] == '$') | 109 | else if (str[0] == '$') |
110 | return -1; | 110 | return -1; |
111 | /* exclude debugging symbols */ | ||
112 | else if (stype == 'N') | ||
113 | return -1; | ||
111 | 114 | ||
112 | /* include the type field in the symbol name, so that it gets | 115 | /* include the type field in the symbol name, so that it gets |
113 | * compressed together */ | 116 | * compressed together */ |