diff options
author | John Stultz <johnstul@us.ibm.com> | 2010-07-13 17:56:25 -0700 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2010-07-27 12:40:55 +0200 |
commit | 8ab4351a4c888016620f43bde605b3d0964af339 (patch) | |
tree | 9d92ee7fbf9391bfcfdc1e49fecc31b9fa4e03c0 /kernel/time | |
parent | 9f31f5774961a735687fee17953ab505b3df3abf (diff) | |
download | blackbird-op-linux-8ab4351a4c888016620f43bde605b3d0964af339.tar.gz blackbird-op-linux-8ab4351a4c888016620f43bde605b3d0964af339.zip |
hrtimer: Cleanup direct access to wall_to_monotonic
Provides an accessor function to replace hrtimer.c's
direct access of wall_to_monotonic.
This will allow wall_to_monotonic to be made static as
planned in Documentation/feature-removal-schedule.txt
Signed-off-by: John Stultz <johnstul@us.ibm.com>
LKML-Reference: <1279068988-21864-9-git-send-email-johnstul@us.ibm.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/time')
-rw-r--r-- | kernel/time/timekeeping.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c index b15c3acafd5a..fb61c2ed3660 100644 --- a/kernel/time/timekeeping.c +++ b/kernel/time/timekeeping.c @@ -858,6 +858,11 @@ struct timespec __current_kernel_time(void) return xtime; } +struct timespec __get_wall_to_monotonic(void) +{ + return wall_to_monotonic; +} + struct timespec current_kernel_time(void) { struct timespec now; |