/* * 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 | 50.00% | 6 | 75.00% |
Maciej W. Rozycki | 63 | 47.01% | 1 | 12.50% |
Linus Torvalds (pre-git) | 4 | 2.99% | 1 | 12.50% |
Total | 134 | 100.00% | 8 | 100.00% |