diff options
author | phk <phk@FreeBSD.org> | 2004-09-07 07:06:36 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2004-09-07 07:06:36 +0000 |
commit | 1c10f3deec70710e669a2f0c46f92860c0131efb (patch) | |
tree | 67ee14ea5b792c1eb6b92be0e729a8e025f098fe | |
parent | ae5a11b8d47ec11af413ac7b4301c738e89eedd2 (diff) | |
download | FreeBSD-src-1c10f3deec70710e669a2f0c46f92860c0131efb.zip FreeBSD-src-1c10f3deec70710e669a2f0c46f92860c0131efb.tar.gz |
Make the alpha timecounter preferable to the i8254.
-rw-r--r-- | sys/alpha/alpha/clock.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/alpha/alpha/clock.c b/sys/alpha/alpha/clock.c index 6817ab7..9d6d89a 100644 --- a/sys/alpha/alpha/clock.c +++ b/sys/alpha/alpha/clock.c @@ -120,7 +120,8 @@ static struct timecounter alpha_timecounter = { 0, /* no poll_pps */ ~0u, /* counter_mask */ 0, /* frequency */ - "alpha" /* name */ + "alpha", /* name */ + 800, /* quality */ }; static struct timecounter i8254_timecounter = { |