kallsyms: change sym_entry::percpu_absolute to bool type

This field is boolean.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

+4 -4
+4 -4
scripts/kallsyms.c
··· 36 36 unsigned long long addr; 37 37 unsigned int len; 38 38 unsigned int seq; 39 - unsigned int percpu_absolute; 39 + bool percpu_absolute; 40 40 unsigned char sym[]; 41 41 }; 42 42 ··· 181 181 sym->len = len; 182 182 sym->sym[0] = type; 183 183 strcpy(sym_name(sym), name); 184 - sym->percpu_absolute = 0; 184 + sym->percpu_absolute = false; 185 185 186 186 return sym; 187 187 } ··· 339 339 return total; 340 340 } 341 341 342 - static int symbol_absolute(const struct sym_entry *s) 342 + static bool symbol_absolute(const struct sym_entry *s) 343 343 { 344 344 return s->percpu_absolute; 345 345 } ··· 781 781 * versions of this tool. 782 782 */ 783 783 table[i]->sym[0] = 'A'; 784 - table[i]->percpu_absolute = 1; 784 + table[i]->percpu_absolute = true; 785 785 } 786 786 } 787 787