aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorScott Long <scottl@FreeBSD.org>2002-12-05 00:47:27 +0000
committerScott Long <scottl@FreeBSD.org>2002-12-05 00:47:27 +0000
commit8528a71202dbdbfd20def9f60cbfa0810df12c07 (patch)
tree11e75b9aeb670e3f5505e1d367f4e9628d14bcc6 /sys/dev
parent1f1ba8aea647396783a8d0e9d0d37917892343c1 (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/aic7xxx/aic79xx.seq8
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/dev/aic7xxx/aic79xx.seq b/sys/dev/aic7xxx/aic79xx.seq
index 6774896a1419..804ab77772e4 100644
--- a/sys/dev/aic7xxx/aic79xx.seq
+++ b/sys/dev/aic7xxx/aic79xx.seq
@@ -40,7 +40,7 @@
* $FreeBSD$
*/
-VERSION = "$Id: //depot/aic7xxx/aic7xxx/aic79xx.seq#72 $"
+VERSION = "$Id: //depot/aic7xxx/aic7xxx/aic79xx.seq#73 $"
PATCH_ARG_LIST = "struct ahd_softc *ahd"
PREFIX = "ahd_"
@@ -62,8 +62,9 @@ idle_loop:
* interrupt collision on the hardware
* setting of HWERR.
*/
- test ERROR, 0xFF jz . + 2;
+ test ERROR, 0xFF jz no_error_set;
SET_SEQINTCODE(SAW_HWERR)
+no_error_set:
}
SET_MODE(M_SCSI, M_SCSI)
test SCSISEQ0, ENSELO|ENARBO jnz idle_loop_checkbus;
@@ -937,8 +938,9 @@ complete_accepted:
/*
* See if we attempted to deliver a message but the target ingnored us.
*/
- test SCB_CONTROL, MK_MESSAGE jz . + 2;
+ test SCB_CONTROL, MK_MESSAGE jz complete_nomsg;
SET_SEQINTCODE(MKMSG_FAILED)
+complete_nomsg:
call queue_scb_completion;
jmp await_busfree;