summaryrefslogtreecommitdiff
path: root/sys/dev/ic/mfi.c
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2010-01-09 23:15:08 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2010-01-09 23:15:08 +0000
commit966ea9e5a601fa2a77dd33a8791b3729ef5d0e93 (patch)
tree5056d93d81f39076841beadfe0cf8797db4499d2 /sys/dev/ic/mfi.c
parent494a613fb96d93824dbd66cfe2419b406a353168 (diff)
Zap all setting of ITSDONE in drivers that don't look at it. Nobody
else cares so it's just noise. Drivers that actually look at ITSDONE are unchanged. ok marco@ (for his files) dlg@ beck@
Diffstat (limited to 'sys/dev/ic/mfi.c')
-rw-r--r--sys/dev/ic/mfi.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/ic/mfi.c b/sys/dev/ic/mfi.c
index 16ea2dfa97e..37357603a19 100644
--- a/sys/dev/ic/mfi.c
+++ b/sys/dev/ic/mfi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mfi.c,v 1.98 2010/01/04 08:04:43 dlg Exp $ */
+/* $OpenBSD: mfi.c,v 1.99 2010/01/09 23:15:06 krw Exp $ */
/*
* Copyright (c) 2006 Marco Peereboom <marco@peereboom.us>
*
@@ -922,7 +922,6 @@ mfi_scsi_xs_done(struct mfi_ccb *ccb)
}
xs->resid = 0;
- xs->flags |= ITSDONE;
mfi_put_ccb(ccb);
scsi_done(xs);
@@ -1086,7 +1085,6 @@ mfi_scsi_cmd(struct scsi_xfer *xs)
}
mfi_put_ccb(ccb);
- xs->flags |= ITSDONE;
s = splbio();
scsi_done(xs);
splx(s);
@@ -1103,7 +1101,6 @@ mfi_scsi_cmd(struct scsi_xfer *xs)
stuffup:
xs->error = XS_DRIVER_STUFFUP;
complete:
- xs->flags |= ITSDONE;
s = splbio();
scsi_done(xs);
splx(s);