summaryrefslogtreecommitdiff
path: root/sys/arch/mac68k
diff options
context:
space:
mode:
authorbriggs <briggs@cvs.openbsd.org>1996-11-04 18:51:55 +0000
committerbriggs <briggs@cvs.openbsd.org>1996-11-04 18:51:55 +0000
commitb917ef9229a6f391a4027925c6af583abaf693ec (patch)
tree8d51bf06bbfc9cc01a8e88f7aee7c084915edfef /sys/arch/mac68k
parent1c76a305d2cf056c4b48010246df9d46ebf72fd5 (diff)
Q900, etc. have 2nd scsi adapter at offset of 0x402, not 0x400 from the 1st.
Diffstat (limited to 'sys/arch/mac68k')
-rw-r--r--sys/arch/mac68k/dev/esp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/mac68k/dev/esp.c b/sys/arch/mac68k/dev/esp.c
index ae720bfc068..f9140603b39 100644
--- a/sys/arch/mac68k/dev/esp.c
+++ b/sys/arch/mac68k/dev/esp.c
@@ -353,7 +353,7 @@ espattach(parent, self, aux)
sc->sc_freq = 25000000;
}
} else {
- sc->sc_reg = (volatile u_char *) SCSIBase + 0x400;
+ sc->sc_reg = (volatile u_char *) SCSIBase + 0x402;
mac68k_register_scsi_b_irq((void (*)(void *)) espintr, sc);
sc->irq_mask = V2IF_SCSIDRQ; /* V2IF_T1? */
sc->sc_freq = 25000000;