timex.h 394 B

12345678910111213141516171819202122232425
  1. /*
  2. * linux/include/asm-cris/timex.h
  3. *
  4. * CRIS architecture timex specifications
  5. */
  6. #ifndef _ASM_CRIS_TIMEX_H
  7. #define _ASM_CRIS_TIMEX_H
  8. #include <arch/timex.h>
  9. /*
  10. * We don't have a cycle-counter.. but we do not support SMP anyway where this is
  11. * used so it does not matter.
  12. */
  13. typedef unsigned long long cycles_t;
  14. static inline cycles_t get_cycles(void)
  15. {
  16. return 0;
  17. }
  18. #endif