diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2005-05-01 15:15:09 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2005-05-01 15:15:09 +0000 |
commit | ed8e57ce7bdd4579246cbae2c1ffaacee3731003 (patch) | |
tree | 37fe2d028053f182e7689ed8819eab4cb7943dc5 /sys/arch/mips64 | |
parent | f5435ecd39aed465879c8a78f1ca38d546a2eef8 (diff) |
Use quality 0 instead of 1000 for CP0 timecounter like
for i8254 on i386/amd64. Tested by kettenis@.
Diffstat (limited to 'sys/arch/mips64')
-rw-r--r-- | sys/arch/mips64/mips64/clock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/mips64/clock.c b/sys/arch/mips64/mips64/clock.c index 93614a5da75..396861ed1ac 100644 --- a/sys/arch/mips64/mips64/clock.c +++ b/sys/arch/mips64/mips64/clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clock.c,v 1.14 2005/04/29 18:41:12 grange Exp $ */ +/* $OpenBSD: clock.c,v 1.15 2005/05/01 15:15:08 grange Exp $ */ /* * Copyright (c) 2001-2004 Opsycon AB (www.opsycon.se / www.opsycon.com) @@ -70,7 +70,7 @@ struct timecounter cp0_timecounter = { 0xffffffff, /* counter_mask */ 0, /* frequency */ "CP0", /* name */ - 1000 /* quality */ + 0 /* quality */ }; #define SECDAY (24*SECHOUR) /* seconds per day */ |