diff options
Diffstat (limited to 'arch/ia64/include/asm/cputime.h')
| -rw-r--r-- | arch/ia64/include/asm/cputime.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/arch/ia64/include/asm/cputime.h b/arch/ia64/include/asm/cputime.h index 7fa8a8594660..6073b187528a 100644 --- a/arch/ia64/include/asm/cputime.h +++ b/arch/ia64/include/asm/cputime.h @@ -56,10 +56,10 @@ typedef u64 cputime64_t;  #define jiffies64_to_cputime64(__jif)	((__jif) * (NSEC_PER_SEC / HZ))  /* - * Convert cputime <-> milliseconds + * Convert cputime <-> microseconds   */ -#define cputime_to_msecs(__ct)		((__ct) / NSEC_PER_MSEC) -#define msecs_to_cputime(__msecs)	((__msecs) * NSEC_PER_MSEC) +#define cputime_to_usecs(__ct)		((__ct) / NSEC_PER_USEC) +#define usecs_to_cputime(__usecs)	((__usecs) * NSEC_PER_USEC)  /*   * Convert cputime <-> seconds |