aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/timekeeper_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/timekeeper_internal.h')
-rw-r--r--include/linux/timekeeper_internal.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/timekeeper_internal.h b/include/linux/timekeeper_internal.h
index e88005459035..110f4532188c 100644
--- a/include/linux/timekeeper_internal.h
+++ b/include/linux/timekeeper_internal.h
@@ -29,9 +29,9 @@
29 */ 29 */
30struct tk_read_base { 30struct tk_read_base {
31 struct clocksource *clock; 31 struct clocksource *clock;
32 cycle_t (*read)(struct clocksource *cs); 32 u64 (*read)(struct clocksource *cs);
33 cycle_t mask; 33 u64 mask;
34 cycle_t cycle_last; 34 u64 cycle_last;
35 u32 mult; 35 u32 mult;
36 u32 shift; 36 u32 shift;
37 u64 xtime_nsec; 37 u64 xtime_nsec;
@@ -97,7 +97,7 @@ struct timekeeper {
97 struct timespec64 raw_time; 97 struct timespec64 raw_time;
98 98
99 /* The following members are for timekeeping internal use */ 99 /* The following members are for timekeeping internal use */
100 cycle_t cycle_interval; 100 u64 cycle_interval;
101 u64 xtime_interval; 101 u64 xtime_interval;
102 s64 xtime_remainder; 102 s64 xtime_remainder;
103 u32 raw_interval; 103 u32 raw_interval;
@@ -136,7 +136,7 @@ extern void update_vsyscall_tz(void);
136 136
137extern void update_vsyscall_old(struct timespec *ts, struct timespec *wtm, 137extern void update_vsyscall_old(struct timespec *ts, struct timespec *wtm,
138 struct clocksource *c, u32 mult, 138 struct clocksource *c, u32 mult,
139 cycle_t cycle_last); 139 u64 cycle_last);
140extern void update_vsyscall_tz(void); 140extern void update_vsyscall_tz(void);
141 141
142#else 142#else