summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2002-12-10 23:43:49 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2002-12-10 23:43:49 +0000
commit78fd9a6fdbb8af3abb91486f07814c9269c48d50 (patch)
tree0141b30a47514d6b04bcfe82ccb2df5a8bb2d863
parent7b6cd53a41a9a334cb631002cdcfe310711679b4 (diff)
No need to hardclock IPL_STATCLOCK value anymore.
-rw-r--r--sys/arch/sparc/sparc/intr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/sparc/intr.c b/sys/arch/sparc/sparc/intr.c
index 57f475a9245..ecc40196a8b 100644
--- a/sys/arch/sparc/sparc/intr.c
+++ b/sys/arch/sparc/sparc/intr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: intr.c,v 1.22 2002/08/12 10:44:04 miod Exp $ */
+/* $OpenBSD: intr.c,v 1.23 2002/12/10 23:43:48 miod Exp $ */
/* $NetBSD: intr.c,v 1.20 1997/07/29 09:42:03 fair Exp $ */
/*
@@ -105,7 +105,7 @@ strayintr(fp)
}
static struct intrhand level10 = { clockintr, NULL, (IPL_CLOCK << 8) };
-static struct intrhand level14 = { statintr, NULL, (14 << 8) /* XXX - IPL_STATCLOCK */ };
+static struct intrhand level14 = { statintr, NULL, (IPL_STATCLOCK << 8) };
union sir sir;
/*
* Level 1 software interrupt (could also be Sbus level 1 interrupt).