cyclone.h 403 B

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