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/arch/mac68k | |
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/arch/mac68k')
-rw-r--r-- | sys/arch/mac68k/dev/ncr5380.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/mac68k/dev/ncr5380.c b/sys/arch/mac68k/dev/ncr5380.c index 8a58e8f9543..9324557d98b 100644 --- a/sys/arch/mac68k/dev/ncr5380.c +++ b/sys/arch/mac68k/dev/ncr5380.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncr5380.c,v 1.36 2010/01/10 01:14:26 krw Exp $ */ +/* $OpenBSD: ncr5380.c,v 1.37 2010/01/13 06:09:44 krw Exp $ */ /* $NetBSD: ncr5380.c,v 1.38 1996/12/19 21:48:18 scottr Exp $ */ /* @@ -188,9 +188,7 @@ extern __inline__ void finish_req(SC_REQ *reqp) reqp->next = free_head; free_head = reqp; - xs->flags |= ITSDONE; - if (!(reqp->dr_flag & DRIVER_LINKCHK)) - scsi_done(xs); + scsi_done(xs); splx(sps); } |