ALSA: timer: Make snd_timer_close() returning void
[linux-2.6-block.git] / scripts / kallsyms.c
index e17837f1d3f2bfd8cf712b6d2a0e3a42b88a94ae..ae6504d07fd6123b6a9d984bec070ece4c59d613 100644 (file)
@@ -150,6 +150,9 @@ static int read_symbol(FILE *in, struct sym_entry *s)
        /* exclude debugging symbols */
        else if (stype == 'N' || stype == 'n')
                return -1;
+       /* exclude s390 kasan local symbols */
+       else if (!strncmp(sym, ".LASANPC", 8))
+               return -1;
 
        /* include the type field in the symbol name, so that it gets
         * compressed together */