diff options
author | Xunlei Pang <pang.xunlei@linaro.org> | 2015-04-09 03:04:42 +0200 |
---|---|---|
committer | John Stultz <john.stultz@linaro.org> | 2015-05-22 19:36:29 +0200 |
commit | e83d0a4106d81dd08b70318f078f3bad6acdc110 (patch) | |
tree | 35abcc106078ee090e61cb407de2564de73a9876 /include | |
parent | s390: time: Provide read_boot_clock64() and read_persistent_clock64() (diff) | |
download | linux-e83d0a4106d81dd08b70318f078f3bad6acdc110.tar.xz linux-e83d0a4106d81dd08b70318f078f3bad6acdc110.zip |
time: Remove read_boot_clock()
Now that we have a read_boot_clock64() function available on every
architecture, and converted all the users to it, it's time to remove
the (now unused) read_boot_clock() completely from the kernel.
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Xunlei Pang <pang.xunlei@linaro.org>
[jstultz: Minor commit message tweak suggested by Ingo]
Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/timekeeping.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/timekeeping.h b/include/linux/timekeeping.h index 9af5c1214682..3aa72e648650 100644 --- a/include/linux/timekeeping.h +++ b/include/linux/timekeeping.h @@ -267,7 +267,6 @@ extern int persistent_clock_is_local; extern void read_persistent_clock(struct timespec *ts); extern void read_persistent_clock64(struct timespec64 *ts); -extern void read_boot_clock(struct timespec *ts); extern void read_boot_clock64(struct timespec64 *ts); extern int update_persistent_clock(struct timespec now); extern int update_persistent_clock64(struct timespec64 now); |