Commit 5322e4c2 authored by John Stultz's avatar John Stultz

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: default avatarArnd Bergmann <arnd.bergmann@linaro.org>
Signed-off-by: default avatarJohn Stultz <john.stultz@linaro.org>
parent 334334b5
...@@ -519,9 +519,9 @@ EXPORT_SYMBOL(__getnstimeofday64); ...@@ -519,9 +519,9 @@ EXPORT_SYMBOL(__getnstimeofday64);
/** /**
* getnstimeofday64 - Returns the time of day in a timespec64. * getnstimeofday64 - Returns the time of day in a timespec64.
* @ts: pointer to the timespec to be set * @ts: pointer to the timespec64 to be set
* *
* Returns the time of day in a timespec (WARN if suspended). * Returns the time of day in a timespec64 (WARN if suspended).
*/ */
void getnstimeofday64(struct timespec64 *ts) void getnstimeofday64(struct timespec64 *ts)
{ {
...@@ -623,7 +623,7 @@ EXPORT_SYMBOL_GPL(ktime_get_raw); ...@@ -623,7 +623,7 @@ EXPORT_SYMBOL_GPL(ktime_get_raw);
* *
* The function calculates the monotonic clock from the realtime * The function calculates the monotonic clock from the realtime
* clock and the wall_to_monotonic offset and stores the result * clock and the wall_to_monotonic offset and stores the result
* in normalized timespec format in the variable pointed to by @ts. * in normalized timespec64 format in the variable pointed to by @ts.
*/ */
void ktime_get_ts64(struct timespec64 *ts) void ktime_get_ts64(struct timespec64 *ts)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment