Merge branch 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / include / linux / timekeeping.h
index a5a3cfc3c2fa754fd8f21fc721094268a4aa256b..29975e93fcb8e4f51692826c9f535787dc49ed46 100644 (file)
@@ -266,9 +266,6 @@ extern int update_persistent_clock64(struct timespec64 now);
  * deprecated aliases, don't use in new code
  */
 #define getnstimeofday64(ts)           ktime_get_real_ts64(ts)
-#define get_monotonic_boottime64(ts)   ktime_get_boottime_ts64(ts)
-#define getrawmonotonic64(ts)          ktime_get_raw_ts64(ts)
-#define timekeeping_clocktai64(ts)     ktime_get_clocktai_ts64(ts)
 
 static inline struct timespec64 current_kernel_time64(void)
 {
@@ -279,13 +276,4 @@ static inline struct timespec64 current_kernel_time64(void)
        return ts;
 }
 
-static inline struct timespec64 get_monotonic_coarse64(void)
-{
-       struct timespec64 ts;
-
-       ktime_get_coarse_ts64(&ts);
-
-       return ts;
-}
-
 #endif