diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2010-01-09 23:15:08 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2010-01-09 23:15:08 +0000 |
commit | 966ea9e5a601fa2a77dd33a8791b3729ef5d0e93 (patch) | |
tree | 5056d93d81f39076841beadfe0cf8797db4499d2 /sys/dev/ic/ncr5380sbc.c | |
parent | 494a613fb96d93824dbd66cfe2419b406a353168 (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/ncr5380sbc.c')
-rw-r--r-- | sys/dev/ic/ncr5380sbc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/ic/ncr5380sbc.c b/sys/dev/ic/ncr5380sbc.c index 57750b4e413..d19cd3d670e 100644 --- a/sys/dev/ic/ncr5380sbc.c +++ b/sys/dev/ic/ncr5380sbc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncr5380sbc.c,v 1.22 2009/11/01 23:06:03 fgsch Exp $ */ +/* $OpenBSD: ncr5380sbc.c,v 1.23 2010/01/09 23:15:06 krw Exp $ */ /* $NetBSD: ncr5380sbc.c,v 1.13 1996/10/13 01:37:25 christos Exp $ */ /* @@ -803,7 +803,6 @@ finish: sc->sc_ncmds--; /* Tell common SCSI code it is done. */ - xs->flags |= ITSDONE; scsi_done(xs); sc->sc_state = NCR_IDLE; |