Commit-ID: 21b6c0512e8aca75ce76365e1aef9fb16e007100 Gitweb: http://git.kernel.org/tip/21b6c0512e8aca75ce76365e1aef9fb16e007100 Author: John Stultz <john.stultz@xxxxxxxxxx> AuthorDate: Thu, 20 Nov 2014 21:19:15 -0800 Committer: John Stultz <john.stultz@xxxxxxxxxx> CommitDate: Fri, 21 Nov 2014 12:00:01 -0800 time: Remove timekeeping_inject_sleeptime() Since all users have been converted to using the 64bit timekeeping_inject_sleeptime64(), remove the old y2038 problematic timekeeping_inject_sleeptime(). Signed-off-by: John Stultz <john.stultz@xxxxxxxxxx> --- include/linux/timekeeping.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/include/linux/timekeeping.h b/include/linux/timekeeping.h index 8cab4b7..961fea3 100644 --- a/include/linux/timekeeping.h +++ b/include/linux/timekeeping.h @@ -225,17 +225,6 @@ static inline void timekeeping_clocktai(struct timespec *ts) */ extern void timekeeping_inject_sleeptime64(struct timespec64 *delta); -/** - * Deprecated. Use timekeeping_inject_sleeptime64(). - */ -static inline void timekeeping_inject_sleeptime(struct timespec *delta) -{ - struct timespec64 delta64; - - delta64 = timespec_to_timespec64(*delta); - timekeeping_inject_sleeptime64(&delta64); -} - /* * PPS accessor */ -- To unsubscribe from this list: send the line "unsubscribe linux-tip-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html
![]() |