/* SPDX-License-Identifier: GPL-2.0 */ /* * This is included by init/main.c to check for architecture-dependent bugs. * * Copyright (C) 2007 Maciej W. Rozycki * * Needs: * void check_bugs(void); */ #ifndef _ASM_BUGS_H #define _ASM_BUGS_H #include <linux/bug.h> #include <linux/delay.h> #include <linux/smp.h> #include <asm/cpu.h> #include <asm/cpu-info.h> extern int daddiu_bug; extern void check_bugs64_early(void); extern void check_bugs32(void); extern void check_bugs64(void);
static inline void check_bugs_early(void) { #ifdef CONFIG_64BIT check_bugs64_early(); #endif }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Maciej W. Rozycki | 17 | 100.00% | 1 | 100.00% |
Total | 17 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 36 | 100.00% | 3 | 100.00% |
Total | 36 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Maciej W. Rozycki | 31 | 100.00% | 1 | 100.00% |
Total | 31 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 67 | 49.63% | 6 | 66.67% |
Maciej W. Rozycki | 63 | 46.67% | 1 | 11.11% |
Linus Torvalds (pre-git) | 4 | 2.96% | 1 | 11.11% |
Greg Kroah-Hartman | 1 | 0.74% | 1 | 11.11% |
Total | 135 | 100.00% | 9 | 100.00% |