diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-07-12 00:35:07 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-07-12 00:35:07 +0000 |
commit | ca2b53c30a3c2dea1d2610319ea0f4913ecae2e4 (patch) | |
tree | 517264cd64f493b4abe59243171390dc9f665161 /kernel/sys.c | |
parent | 2bab1036f931dad0ae1633669c92fb201b229789 (diff) |
Make HZ_TO_STD macro name lowercase.
Diffstat (limited to 'kernel/sys.c')
-rw-r--r-- | kernel/sys.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kernel/sys.c b/kernel/sys.c index a3879169e..eea48d548 100644 --- a/kernel/sys.c +++ b/kernel/sys.c @@ -738,14 +738,14 @@ asmlinkage long sys_times(struct tms * tbuf) * as if the syscall took an instant longer to occur. */ if (tbuf) { - temp.tms_utime = HZ_TO_STD(current->times.tms_utime); - temp.tms_stime = HZ_TO_STD(current->times.tms_stime); - temp.tms_cutime = HZ_TO_STD(current->times.tms_cutime); - temp.tms_cstime = HZ_TO_STD(current->times.tms_cstime); + temp.tms_utime = hz_to_std(current->times.tms_utime); + temp.tms_stime = hz_to_std(current->times.tms_stime); + temp.tms_cutime = hz_to_std(current->times.tms_cutime); + temp.tms_cstime = hz_to_std(current->times.tms_cstime); if (copy_to_user(tbuf, &temp, sizeof(struct tms))) return -EFAULT; } - return HZ_TO_STD(jiffies); + return hz_to_std(jiffies); } /* |