repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
arm64: dts: Revert "specify console via command line"
[linux/fpc-iii.git]
/
arch
/
arm
/
kernel
/
bugs.c
blob
14c8dbbb7d2dfd7a0143d941224152a326982d7f
1
// SPDX-License-Identifier: GPL-2.0
2
#include <linux/init.h>
3
#include <asm/bugs.h>
4
#include <asm/proc-fns.h>
5
6
void
check_other_bugs
(
void
)
7
{
8
#ifdef MULTI_CPU
9
if
(
cpu_check_bugs
)
10
cpu_check_bugs
();
11
#endif
12
}
13
14
void
__init
check_bugs
(
void
)
15
{
16
check_writebuffer_bugs
();
17
check_other_bugs
();
18
}