17 lines
288 B
C
17 lines
288 B
C
|
/* x86-specific clocksource additions */
|
||
|
|
||
|
#ifndef _ASM_X86_CLOCKSOURCE_H
|
||
|
#define _ASM_X86_CLOCKSOURCE_H
|
||
|
|
||
|
#ifdef CONFIG_X86_64
|
||
|
|
||
|
#define __ARCH_HAS_CLOCKSOURCE_DATA
|
||
|
|
||
|
struct arch_clocksource_data {
|
||
|
cycle_t (*vread)(void);
|
||
|
};
|
||
|
|
||
|
#endif /* CONFIG_X86_64 */
|
||
|
|
||
|
#endif /* _ASM_X86_CLOCKSOURCE_H */
|