diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2008-11-25 17:52:03 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2008-11-25 17:52:03 +0000 |
commit | 964f11c55ef25ce29098cb30b19cb9ceae4789df (patch) | |
tree | c0d53a0a81f68002afaa36acf4090916a7d9ea17 /sys/dev/isa/wds.c | |
parent | 5e6e3b874e0aa94592dfaa1ab0d2f4211616a6a5 (diff) |
Another bunch of TRY_AGAIN_LATER -> NO_CCB when no I/O could be started.
"looks sane to me" marco@
Diffstat (limited to 'sys/dev/isa/wds.c')
-rw-r--r-- | sys/dev/isa/wds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/wds.c b/sys/dev/isa/wds.c index 09c695991f2..85ad383e5b1 100644 --- a/sys/dev/isa/wds.c +++ b/sys/dev/isa/wds.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wds.c,v 1.25 2008/09/12 11:14:04 miod Exp $ */ +/* $OpenBSD: wds.c,v 1.26 2008/11/25 17:52:02 krw Exp $ */ /* $NetBSD: wds.c,v 1.13 1996/11/03 16:20:31 mycroft Exp $ */ #undef WDSDIAG @@ -1076,7 +1076,7 @@ wds_scsi_cmd(xs) mflags = ISADMA_MAP_BOUNCE | ISADMA_MAP_WAITOK; #endif if ((scb = wds_get_scb(sc, flags, NEEDBUFFER(sc))) == NULL) { - return TRY_AGAIN_LATER; + return (NO_CCB); } scb->xs = xs; scb->timeout = xs->timeout; |