Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/arm/kernel/bugs.c
26292 views
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
7
void check_other_bugs(void)
8
{
9
#ifdef MULTI_CPU
10
if (cpu_check_bugs)
11
cpu_check_bugs();
12
#endif
13
}
14
15
void __init arch_cpu_finalize_init(void)
16
{
17
check_writebuffer_bugs();
18
check_other_bugs();
19
}
20
21