diff options
author | Nathan Binkert <nate@cvs.openbsd.org> | 2001-12-14 03:42:17 +0000 |
---|---|---|
committer | Nathan Binkert <nate@cvs.openbsd.org> | 2001-12-14 03:42:17 +0000 |
commit | 5ad2fe5a3b404e6a640a7beac80eea0fb573edc3 (patch) | |
tree | 100838b439cd3935c8462a12974b6cf8d3c012b0 /sys/kern | |
parent | 30b83e1ca2681840779f42dc3919e08995d65418 (diff) |
New hz value needed by AlphaServer 1200 and a couple other machines
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/kern_clock.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/kern_clock.c b/sys/kern/kern_clock.c index b120e6a8b6b..b8ae3c2f084 100644 --- a/sys/kern/kern_clock.c +++ b/sys/kern/kern_clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_clock.c,v 1.29 2001/11/06 19:53:20 miod Exp $ */ +/* $OpenBSD: kern_clock.c,v 1.30 2001/12/14 03:42:16 nate Exp $ */ /* $NetBSD: kern_clock.c,v 1.34 1996/06/09 04:51:03 briggs Exp $ */ /*- @@ -360,6 +360,9 @@ initclocks() case 1024: shifthz = SHIFT_SCALE - 10; break; + case 1200: + shifthz = SHIFT_SCALE - 11; + break; default: panic("weird hz"); } |