diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-05-20 17:22:52 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-05-20 17:22:52 +0000 |
commit | 7f5a00ff5f2a363b60e69eab4d2d76273cb54b63 (patch) | |
tree | 4842347194167edec4d76898ad64e5455419a545 /sys/arch | |
parent | 4264829f2869911b43b3b8496011f103c1d837b7 (diff) |
On AV-class machines, SCSI interrupts still come from VIA2, not PSC, so
IPL_BIO should not be modified.
Found the hard way by martin@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/mac68k/mac68k/intr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mac68k/mac68k/intr.c b/sys/arch/mac68k/mac68k/intr.c index 77367fb1dc1..1df3f21aa9f 100644 --- a/sys/arch/mac68k/mac68k/intr.c +++ b/sys/arch/mac68k/mac68k/intr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.c,v 1.7 2006/03/13 19:39:52 brad Exp $ */ +/* $OpenBSD: intr.c,v 1.8 2007/05/20 17:22:51 miod Exp $ */ /* $NetBSD: intr.c,v 1.2 1998/08/25 04:03:56 scottr Exp $ */ /*- @@ -99,7 +99,7 @@ intr_init() mac68k_statclockipl = (PSL_S | PSL_IPL2); if (current_mac_model->class == MACH_CLASSAV) - mac68k_bioipl = mac68k_netipl = (PSL_S | PSL_IPL4); + mac68k_netipl = (PSL_S | PSL_IPL4); } intr_computeipl(); |