aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-01-31 05:07:54 -0500
committerThomas Gleixner <tglx@linutronix.de>2011-01-31 08:55:43 -0500
commit79ecaf0d15344d78904becf0f25de3fc9b49d430 (patch)
tree1fb8b5f73c86dbb2636c9a6e3458212f0843e378
parent48cf76f7104f655bbd48a75c7759dce82c3e1ab6 (diff)
time: Remove unused __get_wall_to_monotonic()
No users left. Remove it. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r--include/linux/time.h1
-rw-r--r--kernel/time/timekeeping.c5
2 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/time.h b/include/linux/time.h
index 4007a12a1b50..ce29c86882b1 100644
--- a/include/linux/time.h
+++ b/include/linux/time.h
@@ -125,7 +125,6 @@ extern int timekeeping_suspended;
125unsigned long get_seconds(void); 125unsigned long get_seconds(void);
126struct timespec current_kernel_time(void); 126struct timespec current_kernel_time(void);
127struct timespec __current_kernel_time(void); /* does not take xtime_lock */ 127struct timespec __current_kernel_time(void); /* does not take xtime_lock */
128struct timespec __get_wall_to_monotonic(void); /* does not take xtime_lock */
129struct timespec get_monotonic_coarse(void); 128struct timespec get_monotonic_coarse(void);
130void get_xtime_and_monotonic_offset(struct timespec *xtim, struct timespec *wtom); 129void get_xtime_and_monotonic_offset(struct timespec *xtim, struct timespec *wtom);
131 130
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
index c50aaf6cd01d..8da35d1b9e16 100644
--- a/kernel/time/timekeeping.c
+++ b/kernel/time/timekeeping.c
@@ -910,11 +910,6 @@ struct timespec __current_kernel_time(void)
910 return xtime; 910 return xtime;
911} 911}
912 912
913struct timespec __get_wall_to_monotonic(void)
914{
915 return wall_to_monotonic;
916}
917
918struct timespec current_kernel_time(void) 913struct timespec current_kernel_time(void)
919{ 914{
920 struct timespec now; 915 struct timespec now;