mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-11 00:04:33 +08:00
10 lines
161 B
C
10 lines
161 B
C
|
// SPDX-Identifier: GPL-2.0
|
||
|
#include <linux/init.h>
|
||
|
#include <asm/bugs.h>
|
||
|
#include <asm/proc-fns.h>
|
||
|
|
||
|
void __init check_bugs(void)
|
||
|
{
|
||
|
check_writebuffer_bugs();
|
||
|
}
|