summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAlexander Yurchenko <grange@cvs.openbsd.org>2009-03-16 07:21:58 +0000
committerAlexander Yurchenko <grange@cvs.openbsd.org>2009-03-16 07:21:58 +0000
commit4584caac6fccef9e02928a76fbbfb0d3b941b3f1 (patch)
treeadbc428a9e3120ec5e49c3c95ee1baa17bbedcb4 /sys
parenta70ea7a0d41fc23f193e4cf52f9f81bf20011a83 (diff)
IPS_SCSI_PT flag not used any more.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/ips.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/pci/ips.c b/sys/dev/pci/ips.c
index e1786408044..27b7f54e84b 100644
--- a/sys/dev/pci/ips.c
+++ b/sys/dev/pci/ips.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ips.c,v 1.65 2009/03/15 17:35:42 grange Exp $ */
+/* $OpenBSD: ips.c,v 1.66 2009/03/16 07:21:57 grange Exp $ */
/*
* Copyright (c) 2006, 2007, 2009 Alexander Yurchenko <grange@openbsd.org>
@@ -333,7 +333,6 @@ struct ips_softc;
struct ips_ccb {
int c_id; /* command id */
int c_flags; /* SCSI_* flags */
-#define IPS_SCSI_PT 0x10000 /* SCSI pass-through */
enum {
IPS_CCB_FREE,
IPS_CCB_QUEUED,
@@ -1011,7 +1010,6 @@ ips_scsi_pt_cmd(struct scsi_xfer *xs)
}
xs->error = XS_NOERROR;
- xs->flags |= IPS_SCSI_PT;
s = splbio();
ccb = ips_ccb_get(sc);