blob: 16e7ba2a9cc40c77f9d39a8e24efc861c7122273 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// SPDX-Identifier: GPL-2.0
#include <linux/init.h>
#include <asm/bugs.h>
#include <asm/proc-fns.h>
void check_other_bugs(void)
{
}
void __init check_bugs(void)
{
check_writebuffer_bugs();
check_other_bugs();
}
|