]> Git Repo - linux.git/blame - arch/arm/kernel/bugs.c
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux.git] / arch / arm / kernel / bugs.c
CommitLineData
a5b9177f
RK
1// SPDX-Identifier: GPL-2.0
2#include <linux/init.h>
3#include <asm/bugs.h>
4#include <asm/proc-fns.h>
5
26602161
RK
6void check_other_bugs(void)
7{
9d3a0492 8#ifdef MULTI_CPU
945aceb1
RK
9 if (cpu_check_bugs)
10 cpu_check_bugs();
9d3a0492 11#endif
26602161
RK
12}
13
a5b9177f
RK
14void __init check_bugs(void)
15{
16 check_writebuffer_bugs();
26602161 17 check_other_bugs();
a5b9177f 18}
This page took 0.039529 seconds and 4 git commands to generate.