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-ia64 / cyclone.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-08-11  |  403 b   |  16 lines

  1. #ifndef ASM_IA64_CYCLONE_H
  2. #define ASM_IA64_CYCLONE_H
  3.  
  4. #ifdef    CONFIG_IA64_CYCLONE
  5. extern int use_cyclone;
  6. extern void __init cyclone_setup(void);
  7. #else    /* CONFIG_IA64_CYCLONE */
  8. #define use_cyclone 0
  9. static inline void cyclone_setup(void)
  10. {
  11.     printk(KERN_ERR "Cyclone Counter: System not configured"
  12.                     " w/ CONFIG_IA64_CYCLONE.\n");
  13. }
  14. #endif    /* CONFIG_IA64_CYCLONE */
  15. #endif    /* !ASM_IA64_CYCLONE_H */
  16.