bugs.c 280 B

12345678910111213141516171819
  1. // SPDX-Identifier: GPL-2.0
  2. #include <linux/init.h>
  3. #include <asm/bugs.h>
  4. #include <asm/proc-fns.h>
  5. void check_other_bugs(void)
  6. {
  7. #ifdef MULTI_CPU
  8. if (cpu_check_bugs)
  9. cpu_check_bugs();
  10. #endif
  11. }
  12. void __init check_bugs(void)
  13. {
  14. check_writebuffer_bugs();
  15. check_other_bugs();
  16. }