summaryrefslogtreecommitdiff
path: root/sys/dev/eisa
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2010-01-10 00:10:24 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2010-01-10 00:10:24 +0000
commitc6c0f256e4fe51adfe4e53e07736f2606975ecde (patch)
tree54865f08103e580e7ac44f8bdf4691d9c349b87a /sys/dev/eisa
parente1c5df59efbbfff22b9563a6e6ce0068776c8963 (diff)
Set ITSDONE in scsi_done() and zap trivial instances of setting it
in the drivers just before calling scsi_done(). ok dlg@ beck@
Diffstat (limited to 'sys/dev/eisa')
-rw-r--r--sys/dev/eisa/aha1742.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/eisa/aha1742.c b/sys/dev/eisa/aha1742.c
index 7d10f4376ea..8189457b8ac 100644
--- a/sys/dev/eisa/aha1742.c
+++ b/sys/dev/eisa/aha1742.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: aha1742.c,v 1.35 2009/11/22 14:14:10 krw Exp $ */
+/* $OpenBSD: aha1742.c,v 1.36 2010/01/10 00:10:23 krw Exp $ */
/* $NetBSD: aha1742.c,v 1.61 1996/05/12 23:40:01 mycroft Exp $ */
/*
@@ -684,7 +684,6 @@ ahb_done(sc, ecb)
xs->resid = 0;
}
done:
- xs->flags |= ITSDONE;
ahb_free_ecb(sc, ecb, xs->flags);
scsi_done(xs);
}