Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 #include <linux/init.h>
0003 #include <asm/bugs.h>
0004 #include <asm/proc-fns.h>
0005 
0006 void check_other_bugs(void)
0007 {
0008 #ifdef MULTI_CPU
0009     if (cpu_check_bugs)
0010         cpu_check_bugs();
0011 #endif
0012 }
0013 
0014 void __init check_bugs(void)
0015 {
0016     check_writebuffer_bugs();
0017     check_other_bugs();
0018 }