diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-06-04 06:57:58 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-06-04 06:57:58 +0000 |
commit | 61444bc006f61186e1cf7f4d423ca470e08f176c (patch) | |
tree | 5bcc847da9932604a705ff8d97074d470952f0b2 /sys/arch/amd64 | |
parent | 59e10224d7303be1c798adfbcbf8ca85cedaa87f (diff) |
Use 166.67 and 266.67 for bus_clock and not 166.66 and 266.66,
as per recommended values from Intel documentation.
ok tedu@
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/amd64/est.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amd64/amd64/est.c b/sys/arch/amd64/amd64/est.c index 4ed0ffaf1fc..dacf99d7c84 100644 --- a/sys/arch/amd64/amd64/est.c +++ b/sys/arch/amd64/amd64/est.c @@ -1,4 +1,4 @@ -/* $OpenBSD: est.c,v 1.3 2007/06/03 04:30:31 jsg Exp $ */ +/* $OpenBSD: est.c,v 1.4 2007/06/04 06:57:57 jsg Exp $ */ /* * Copyright (c) 2003 Michael Eriksson. * All rights reserved. @@ -167,13 +167,13 @@ p3_get_bus_clock(struct cpu_info *ci) bus_clock = 13333; break; case 3: - bus_clock = 16666; + bus_clock = 16667; break; case 2: bus_clock = 20000; break; case 0: - bus_clock = 26666; + bus_clock = 26667; break; case 4: bus_clock = 33333; |