diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2010-01-10 01:14:27 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2010-01-10 01:14:27 +0000 |
commit | c2c7b186bcfc229869dc939e1ecc47405b8f4185 (patch) | |
tree | 0469c36cf19a7af2c7858d95bda2494c5d72fc66 /sys/arch | |
parent | d99ef921451d622b45328a53bce340486cec59f7 (diff) |
My mistake. There was one more driver paranoid enough to check
ITSDONE on getting the xs to execute. And optimistic enough to think
simply restting the flag would be a good thing. Chill out like
everyone else, reducing ITSDONE noise some more.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/mac68k/dev/ncr5380.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/arch/mac68k/dev/ncr5380.c b/sys/arch/mac68k/dev/ncr5380.c index 318b497a19e..8a58e8f9543 100644 --- a/sys/arch/mac68k/dev/ncr5380.c +++ b/sys/arch/mac68k/dev/ncr5380.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncr5380.c,v 1.35 2009/02/16 21:19:05 miod Exp $ */ +/* $OpenBSD: ncr5380.c,v 1.36 2010/01/10 01:14:26 krw Exp $ */ /* $NetBSD: ncr5380.c,v 1.38 1996/12/19 21:48:18 scottr Exp $ */ /* @@ -334,14 +334,6 @@ mac68k_ncr5380_scsi_cmd(struct scsi_xfer *xs) memcpy(&reqp->xcmd, xs->cmd, sizeof(struct scsi_generic)); reqp->xcmd.bytes[0] |= reqp->targ_lun << 5; - /* - * Sanity check on flags... - */ - if (flags & ITSDONE) { - ncr_tprint(reqp, "scsi_cmd: command already done.....\n"); - xs->flags &= ~ITSDONE; - } - #ifdef REAL_DMA /* * Check if DMA can be used on this request |