Linux Audio

Check our new training course

Linux BSP development engineering services

Need help to port Linux and bootloaders to your hardware?
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.8
 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}