Linux Audio

Check our new training course

Loading...
v6.13.7
 1// SPDX-License-Identifier: GPL-2.0
 2#include <linux/init.h>
 3#include <linux/cpu.h>
 4#include <asm/bugs.h>
 5#include <asm/proc-fns.h>
 6
 7void check_other_bugs(void)
 8{
 9#ifdef MULTI_CPU
10	if (cpu_check_bugs)
11		cpu_check_bugs();
12#endif
13}
14
15void __init arch_cpu_finalize_init(void)
16{
17	check_writebuffer_bugs();
18	check_other_bugs();
19}
v6.2
 1// SPDX-License-Identifier: GPL-2.0
 2#include <linux/init.h>
 
 3#include <asm/bugs.h>
 4#include <asm/proc-fns.h>
 5
 6void check_other_bugs(void)
 7{
 8#ifdef MULTI_CPU
 9	if (cpu_check_bugs)
10		cpu_check_bugs();
11#endif
12}
13
14void __init check_bugs(void)
15{
16	check_writebuffer_bugs();
17	check_other_bugs();
18}