diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2010-01-13 06:09:45 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2010-01-13 06:09:45 +0000 |
commit | f81cc2b29a14337b801b60b0e5372ce058b26241 (patch) | |
tree | dfbfca44920f76173db6d93a2958307ec5d58b9d /sys/dev | |
parent | ba3f5f2d3431c1649f90db5380847512340cfd66 (diff) |
Remove a few more settings of ITSDONE in drivers. Only a couple
more to go. Should be a no-op.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/aic6360.c | 4 | ||||
-rw-r--r-- | sys/dev/ic/ncr53c9x.c | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/sys/dev/ic/aic6360.c b/sys/dev/ic/aic6360.c index bf1dc008b4d..8fb801d08eb 100644 --- a/sys/dev/ic/aic6360.c +++ b/sys/dev/ic/aic6360.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aic6360.c,v 1.20 2009/11/01 23:06:03 fgsch Exp $ */ +/* $OpenBSD: aic6360.c,v 1.21 2010/01/13 06:09:44 krw Exp $ */ /* $NetBSD: aic6360.c,v 1.52 1996/12/10 21:27:51 thorpej Exp $ */ #ifdef DDB @@ -843,8 +843,6 @@ aic_done(struct aic_softc *sc, struct aic_acb *acb) } } - xs->flags |= ITSDONE; - #ifdef AIC_DEBUG if ((aic_debug & AIC_SHOWMISC) != 0) { if (xs->resid != 0) diff --git a/sys/dev/ic/ncr53c9x.c b/sys/dev/ic/ncr53c9x.c index 65ee11bc53f..7b021185e66 100644 --- a/sys/dev/ic/ncr53c9x.c +++ b/sys/dev/ic/ncr53c9x.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncr53c9x.c,v 1.43 2009/12/06 17:24:28 krw Exp $ */ +/* $OpenBSD: ncr53c9x.c,v 1.44 2010/01/13 06:09:44 krw Exp $ */ /* $NetBSD: ncr53c9x.c,v 1.56 2000/11/30 14:41:46 thorpej Exp $ */ /* @@ -1130,8 +1130,6 @@ ncr53c9x_done(sc, ecb) } } - xs->flags |= ITSDONE; - #ifdef NCR53C9X_DEBUG if (ncr53c9x_debug & NCR_SHOWMISC) { if (xs->resid != 0) |