diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2001-08-26 00:45:09 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2001-08-26 00:45:09 +0000 |
commit | 030e931872538ee3f6a2d0b3c3c67e06a35e8f4c (patch) | |
tree | c5bef4730076899059b6688471efa6b5652535e3 /sys/dev/isa | |
parent | ce6eee8acba663d4c42e1900f5afedfe2ee028bf (diff) |
remove useless INUSE references from scsi_xfer->flags; art@ miod@ ok.
Diffstat (limited to 'sys/dev/isa')
-rw-r--r-- | sys/dev/isa/seagate.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/dev/isa/seagate.c b/sys/dev/isa/seagate.c index 00b469f8cad..179db398aba 100644 --- a/sys/dev/isa/seagate.c +++ b/sys/dev/isa/seagate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: seagate.c,v 1.15 2001/06/27 05:44:54 nate Exp $ */ +/* $OpenBSD: seagate.c,v 1.16 2001/08/26 00:45:08 fgsch Exp $ */ /* * ST01/02, Future Domain TMC-885, TMC-950 SCSI driver @@ -548,10 +548,9 @@ sea_scsi_cmd(xs) SC_DEBUG(sc_link, SDEV_DB2, ("sea_scsi_cmd\n")); flags = xs->flags; - if ((flags & (ITSDONE|INUSE)) != INUSE) { - printf("%s: done or not in use?\n", sea->sc_dev.dv_xname); + if (flags & ITSDONE) { + printf("%s: done?\n", sea->sc_dev.dv_xname); xs->flags &= ~ITSDONE; - xs->flags |= INUSE; } if ((scb = sea_get_scb(sea, flags)) == NULL) { xs->error = XS_DRIVER_STUFFUP; |