/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ALPHA_COMPILER_H #define __ALPHA_COMPILER_H #include <uapi/asm/compiler.h> /* Some idiots over in <linux/compiler.h> thought inline should imply always_inline. This breaks stuff. We'll include this file whenever we run into such problems. */ #include <linux/compiler.h> #undef inline #undef __inline__ #undef __inline #undef __always_inline #define __always_inline inline __attribute__((always_inline)) #endif /* __ALPHA_COMPILER_H */Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Richard Henderson | 13 | 39.39% | 1 | 20.00% |
Ivan Kokshaysky | 9 | 27.27% | 1 | 20.00% |
Linus Torvalds (pre-git) | 7 | 21.21% | 1 | 20.00% |
David Howells | 3 | 9.09% | 1 | 20.00% |
Greg Kroah-Hartman | 1 | 3.03% | 1 | 20.00% |
Total | 33 | 100.00% | 5 | 100.00% |