home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / include / asm-m32r / bugs.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-08-11  |  383 b   |  22 lines

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