aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJohn Stultz <johnstul@us.ibm.com>2010-07-13 20:56:26 -0400
committerThomas Gleixner <tglx@linutronix.de>2010-07-27 06:40:55 -0400
commit0fb86b06298b6cd3205cac2e68a499f269282dac (patch)
tree3adcd4149fbe643ea8cae88578e169d02b7a9e5f /include
parent8ab4351a4c888016620f43bde605b3d0964af339 (diff)
timekeeping: Make xtime and wall_to_monotonic static
This patch makes xtime and wall_to_monotonic static, as planned in Documentation/feature-removal-schedule.txt. This will allow for further cleanups to the timekeeping core. Signed-off-by: John Stultz <johnstul@us.ibm.com> LKML-Reference: <1279068988-21864-10-git-send-email-johnstul@us.ibm.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/linux/time.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/time.h b/include/linux/time.h
index a57e0f67b3d..cb34e35faba 100644
--- a/include/linux/time.h
+++ b/include/linux/time.h
@@ -113,8 +113,6 @@ static inline struct timespec timespec_sub(struct timespec lhs,
113#define timespec_valid(ts) \ 113#define timespec_valid(ts) \
114 (((ts)->tv_sec >= 0) && (((unsigned long) (ts)->tv_nsec) < NSEC_PER_SEC)) 114 (((ts)->tv_sec >= 0) && (((unsigned long) (ts)->tv_nsec) < NSEC_PER_SEC))
115 115
116extern struct timespec xtime;
117extern struct timespec wall_to_monotonic;
118extern seqlock_t xtime_lock; 116extern seqlock_t xtime_lock;
119 117
120extern void read_persistent_clock(struct timespec *ts); 118extern void read_persistent_clock(struct timespec *ts);