timex_no.h 402 B

1234567891011121314151617181920212223
  1. /*
  2. * linux/include/asm-m68knommu/timex.h
  3. *
  4. * m68knommu architecture timex specifications
  5. */
  6. #ifndef _ASM_M68KNOMMU_TIMEX_H
  7. #define _ASM_M68KNOMMU_TIMEX_H
  8. #ifdef CONFIG_COLDFIRE
  9. #include <asm/coldfire.h>
  10. #define CLOCK_TICK_RATE MCF_CLK
  11. #else
  12. #define CLOCK_TICK_RATE 1193180 /* Underlying HZ */
  13. #endif
  14. typedef unsigned long cycles_t;
  15. static inline cycles_t get_cycles(void)
  16. {
  17. return 0;
  18. }
  19. #endif