]>
Commit | Line | Data |
---|---|---|
a5b9177f RK |
1 | // SPDX-Identifier: GPL-2.0 |
2 | #include <linux/init.h> | |
3 | #include <asm/bugs.h> | |
4 | #include <asm/proc-fns.h> | |
5 | ||
26602161 RK |
6 | void check_other_bugs(void) |
7 | { | |
9d3a0492 | 8 | #ifdef MULTI_CPU |
945aceb1 RK |
9 | if (cpu_check_bugs) |
10 | cpu_check_bugs(); | |
9d3a0492 | 11 | #endif |
26602161 RK |
12 | } |
13 | ||
a5b9177f RK |
14 | void __init check_bugs(void) |
15 | { | |
16 | check_writebuffer_bugs(); | |
26602161 | 17 | check_other_bugs(); |
a5b9177f | 18 | } |