/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __TOOLS_KALLSYMS_H_ #define __TOOLS_KALLSYMS_H_ 1 #include <elf.h> #include <linux/ctype.h> #include <linux/types.h> #ifndef KSYM_NAME_LEN #define KSYM_NAME_LEN 256 #endif
static inline u8 kallsyms2elf_binding(char type) { if (type == 'W') return STB_WEAK; return isupper(type) ? STB_GLOBAL : STB_LOCAL; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Arnaldo Carvalho de Melo | 29 | 100.00% | 2 | 100.00% |
Total | 29 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Arnaldo Carvalho de Melo | 106 | 99.07% | 4 | 80.00% |
Greg Kroah-Hartman | 1 | 0.93% | 1 | 20.00% |
Total | 107 | 100.00% | 5 | 100.00% |