]> err.no Git - linux-2.6/blobdiff - kernel/time.c
[PATCH] cpuset: task_lock comment fix
[linux-2.6] / kernel / time.c
index e00a97b77241245cd008f6f843ee6f300e3f5578..ff8e7019c4c498ffbc191fa16cab56f648af74b3 100644 (file)
@@ -610,7 +610,7 @@ void set_normalized_timespec(struct timespec *ts, time_t sec, long nsec)
  *
  * Returns the timespec representation of the nsec parameter.
  */
-struct timespec ns_to_timespec(const nsec_t nsec)
+struct timespec ns_to_timespec(const s64 nsec)
 {
        struct timespec ts;
 
@@ -630,7 +630,7 @@ struct timespec ns_to_timespec(const nsec_t nsec)
  *
  * Returns the timeval representation of the nsec parameter.
  */
-struct timeval ns_to_timeval(const nsec_t nsec)
+struct timeval ns_to_timeval(const s64 nsec)
 {
        struct timespec ts = ns_to_timespec(nsec);
        struct timeval tv;