aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/time
diff options
context:
space:
mode:
authorJohn Stultz <john.stultz@linaro.org>2014-11-07 16:13:04 -0500
committerJohn Stultz <john.stultz@linaro.org>2014-11-21 14:59:59 -0500
commit5322e4c2649844c04f480ca45572022eb684b872 (patch)
treee9a1bc9cca0788bf1aeb55682bf575d9f96e5644 /kernel/time
parent334334b5f577a2255e29d2352d53197d9b796511 (diff)
time: Fixup comments to reflect usage of timespec64
Fix up a few comments that weren't updated when the functions were converted to use timespec64 structures. Acked-by: Arnd Bergmann <arnd.bergmann@linaro.org> Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'kernel/time')
-rw-r--r--kernel/time/timekeeping.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
index f45e5e29a16d..29a7d6709da1 100644
--- a/kernel/time/timekeeping.c
+++ b/kernel/time/timekeeping.c
@@ -519,9 +519,9 @@ EXPORT_SYMBOL(__getnstimeofday64);
519 519
520/** 520/**
521 * getnstimeofday64 - Returns the time of day in a timespec64. 521 * getnstimeofday64 - Returns the time of day in a timespec64.
522 * @ts: pointer to the timespec to be set 522 * @ts: pointer to the timespec64 to be set
523 * 523 *
524 * Returns the time of day in a timespec (WARN if suspended). 524 * Returns the time of day in a timespec64 (WARN if suspended).
525 */ 525 */
526void getnstimeofday64(struct timespec64 *ts) 526void getnstimeofday64(struct timespec64 *ts)
527{ 527{
@@ -623,7 +623,7 @@ EXPORT_SYMBOL_GPL(ktime_get_raw);
623 * 623 *
624 * The function calculates the monotonic clock from the realtime 624 * The function calculates the monotonic clock from the realtime
625 * clock and the wall_to_monotonic offset and stores the result 625 * clock and the wall_to_monotonic offset and stores the result
626 * in normalized timespec format in the variable pointed to by @ts. 626 * in normalized timespec64 format in the variable pointed to by @ts.
627 */ 627 */
628void ktime_get_ts64(struct timespec64 *ts) 628void ktime_get_ts64(struct timespec64 *ts)
629{ 629{