summaryrefslogtreecommitdiff
path: root/sys/dev/pci/ips.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/pci/ips.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/pci/ips.c')
-rw-r--r--sys/dev/pci/ips.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/pci/ips.c b/sys/dev/pci/ips.c
index b1fc046249c..d65b61cc079 100644
--- a/sys/dev/pci/ips.c
+++ b/sys/dev/pci/ips.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ips.c,v 1.93 2009/03/23 17:40:56 grange Exp $ */
+/* $OpenBSD: ips.c,v 1.94 2010/01/09 23:15:07 krw Exp $ */
/*
* Copyright (c) 2006, 2007, 2009 Alexander Yurchenko <grange@openbsd.org>
@@ -1547,7 +1547,6 @@ ips_done_xs(struct ips_softc *sc, struct ips_ccb *ccb)
xs->resid = 0;
xs->error = ips_error_xs(sc, ccb);
- xs->flags |= ITSDONE;
scsi_done(xs);
}
@@ -1589,7 +1588,6 @@ ips_done_pt(struct ips_softc *sc, struct ips_ccb *ccb)
xs->error = XS_DRIVER_STUFFUP;
}
- xs->flags |= ITSDONE;
scsi_done(xs);
}