diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2005-12-03 18:09:38 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2005-12-03 18:09:38 +0000 |
commit | 01085cc3df9c29c8a33ddbd2247ca78ceb10d7e4 (patch) | |
tree | e36aefe31941b31e975942d553721dd338bff02f /sys/arch/hp300/dev | |
parent | c70b5cef9cd869b5048eb62edb340396b02e4db0 (diff) |
The first thing done when XXX_scsi_cmd() returns TRY_AGAIN_LATER is
to set xs->error to XS_BUSY. So it is pointless and misleading to
set xs->error to XS_TIMEOUT, XS_DRIVER_STUFFUP or XS_BUSY just before
returning TRY_AGAIN_LATER.
No functional change.
ok miod@
Diffstat (limited to 'sys/arch/hp300/dev')
-rw-r--r-- | sys/arch/hp300/dev/mb89352.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/hp300/dev/mb89352.c b/sys/arch/hp300/dev/mb89352.c index a2a20e222b5..55edb4612d9 100644 --- a/sys/arch/hp300/dev/mb89352.c +++ b/sys/arch/hp300/dev/mb89352.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mb89352.c,v 1.13 2005/01/04 19:00:02 miod Exp $ */ +/* $OpenBSD: mb89352.c,v 1.14 2005/12/03 18:09:36 krw Exp $ */ /* $NetBSD: mb89352.c,v 1.5 2000/03/23 07:01:31 thorpej Exp $ */ /* NecBSD: mb89352.c,v 1.4 1998/03/14 07:31:20 kmatsuda Exp */ @@ -407,7 +407,6 @@ spc_scsi_cmd(struct scsi_xfer *xs) flags = xs->flags; if ((acb = spc_get_acb(sc, flags)) == NULL) { - xs->error = XS_DRIVER_STUFFUP; return TRY_AGAIN_LATER; } |