From ba45e92a8c6c7a5d781d36e0da52f0b615ca9106 Mon Sep 17 00:00:00 2001 From: marius Date: Sun, 7 Aug 2005 13:21:00 +0000 Subject: The system tick _compare_ register of USIII CPUs and up is ASR25, not ASR24 (which is the system tick register). --- sys/sparc64/sparc64/tick.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sparc64/sparc64/tick.c b/sys/sparc64/sparc64/tick.c index 3c6c7f1..64de96b 100644 --- a/sys/sparc64/sparc64/tick.c +++ b/sys/sparc64/sparc64/tick.c @@ -185,6 +185,6 @@ tick_stop(void) { if (cpu_impl >= CPU_IMPL_ULTRASPARCIII) - wr(asr24, 1L << 63, 0); + wr(asr25, 1L << 63, 0); wrtickcmpr(1L << 63, 0); } -- cgit v1.1