diff options
author | 2009-03-06 01:28:44 +0000 | |
---|---|---|
committer | 2009-03-06 01:28:44 +0000 | |
commit | d23d3d9b8cf8f2595c9a4b940b044a64f15dd01f (patch) | |
tree | 1f3ac59d0915a2453abc5e1133339252b819824a | |
parent | Demacro the inteldrm ring macros too, making them use bus_space_write (diff) | |
download | wireguard-openbsd-d23d3d9b8cf8f2595c9a4b940b044a64f15dd01f.tar.xz wireguard-openbsd-d23d3d9b8cf8f2595c9a4b940b044a64f15dd01f.zip |
Bring NO_CCB to mpi.
ok marco@
-rw-r--r-- | sys/dev/ic/mpi.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/sys/dev/ic/mpi.c b/sys/dev/ic/mpi.c index b79dc020c23..6433d51cc6e 100644 --- a/sys/dev/ic/mpi.c +++ b/sys/dev/ic/mpi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpi.c,v 1.109 2009/02/16 21:19:07 miod Exp $ */ +/* $OpenBSD: mpi.c,v 1.110 2009/03/06 01:28:44 krw Exp $ */ /* * Copyright (c) 2005, 2006 David Gwynne <dlg@openbsd.org> @@ -1124,13 +1124,9 @@ mpi_scsi_cmd(struct scsi_xfer *xs) s = splbio(); ccb = mpi_get_ccb(sc); splx(s); - if (ccb == NULL) { - xs->error = XS_DRIVER_STUFFUP; - s = splbio(); - scsi_done(xs); - splx(s); - return (COMPLETE); - } + if (ccb == NULL) + return (NO_CCB); + DNPRINTF(MPI_D_CMD, "%s: ccb_id: %d xs->flags: 0x%x\n", DEVNAME(sc), ccb->ccb_id, xs->flags); |