bugs.h 371 B

12345678910111213141516171819
  1. #ifndef _ASM_M32R_BUGS_H
  2. #define _ASM_M32R_BUGS_H
  3. /*
  4. * This is included by init/main.c to check for architecture-dependent bugs.
  5. *
  6. * Needs:
  7. * void check_bugs(void);
  8. */
  9. #include <asm/processor.h>
  10. static void __init check_bugs(void)
  11. {
  12. extern unsigned long loops_per_jiffy;
  13. current_cpu_data.loops_per_jiffy = loops_per_jiffy;
  14. }
  15. #endif /* _ASM_M32R_BUGS_H */