Merge tag 'gpio-v3.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6.git] / arch / x86 / include / asm / vgtod.h
blob46e24d36b7da12dc641e4718d0d80e42ca923751
1 #ifndef _ASM_X86_VGTOD_H
2 #define _ASM_X86_VGTOD_H
4 #include <asm/vsyscall.h>
5 #include <linux/clocksource.h>
7 struct vsyscall_gtod_data {
8 seqcount_t seq;
10 struct { /* extract of a clocksource struct */
11 int vclock_mode;
12 cycle_t cycle_last;
13 cycle_t mask;
14 u32 mult;
15 u32 shift;
16 } clock;
18 /* open coded 'struct timespec' */
19 time_t wall_time_sec;
20 u64 wall_time_snsec;
21 u64 monotonic_time_snsec;
22 time_t monotonic_time_sec;
24 struct timezone sys_tz;
25 struct timespec wall_time_coarse;
26 struct timespec monotonic_time_coarse;
28 extern struct vsyscall_gtod_data vsyscall_gtod_data;
30 #endif /* _ASM_X86_VGTOD_H */