diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-12-10 23:43:49 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-12-10 23:43:49 +0000 |
commit | 78fd9a6fdbb8af3abb91486f07814c9269c48d50 (patch) | |
tree | 0141b30a47514d6b04bcfe82ccb2df5a8bb2d863 | |
parent | 7b6cd53a41a9a334cb631002cdcfe310711679b4 (diff) |
No need to hardclock IPL_STATCLOCK value anymore.
-rw-r--r-- | sys/arch/sparc/sparc/intr.c | 4 |
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). |