clocksource.h 288 B

12345678910111213141516
  1. /* x86-specific clocksource additions */
  2. #ifndef _ASM_X86_CLOCKSOURCE_H
  3. #define _ASM_X86_CLOCKSOURCE_H
  4. #ifdef CONFIG_X86_64
  5. #define __ARCH_HAS_CLOCKSOURCE_DATA
  6. struct arch_clocksource_data {
  7. cycle_t (*vread)(void);
  8. };
  9. #endif /* CONFIG_X86_64 */
  10. #endif /* _ASM_X86_CLOCKSOURCE_H */