From d11b733f41fae49d20d3a225b4c82794c35857c8 Mon Sep 17 00:00:00 2001 From: Marius Strobl Date: Sun, 7 Aug 2005 13:21:00 +0000 Subject: [PATCH] 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 3c6c7f125945..64de96b7e076 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); }