/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_LINKAGE_H #define __ASM_LINKAGE_H #include <linux/stringify.h> #define __ALIGN .align 4, 0x07 #define __ALIGN_STR __stringify(__ALIGN) #ifndef __ASSEMBLY__ /* * Helper macro for exception table entries */ #define EX_TABLE(_fault, _target) \ ".section __ex_table,\"a\"\n" \ ".align 4\n" \ ".long (" #_fault ") - .\n" \ ".long (" #_target ") - .\n" \ ".previous\n" #else /* __ASSEMBLY__ */ #define EX_TABLE(_fault, _target) \ .section __ex_table,"a" ; \ .align 4 ; \ .long (_fault) - . ; \ .long (_target) - . ; \ .previous #endif /* __ASSEMBLY__ */ #endifOverall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Hendrik Brueckner | 30 | 60.00% | 1 | 25.00% |
Jan Glauber | 11 | 22.00% | 1 | 25.00% |
Jeff Dike | 8 | 16.00% | 1 | 25.00% |
Greg Kroah-Hartman | 1 | 2.00% | 1 | 25.00% |
Total | 50 | 100.00% | 4 | 100.00% |