diff options
author | mjacob <mjacob@FreeBSD.org> | 2006-12-03 07:19:28 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2006-12-03 07:19:28 +0000 |
commit | 2a86bf80738a18dacf2c70eca5fd6f529e55671b (patch) | |
tree | 01bac3c4678e0fbe9b92a40cb7925c53e1200e5f /sys/cam | |
parent | 85813d2279db1d4af85cf4b79f44102a8799b863 (diff) | |
download | FreeBSD-src-2a86bf80738a18dacf2c70eca5fd6f529e55671b.zip FreeBSD-src-2a86bf80738a18dacf2c70eca5fd6f529e55671b.tar.gz |
Remove CTS_SPI_FLAGS_TAG_ENB. Nobody is using it and at least one
author can't remember why it was there.
The CTS_SCSI_FLAGS_TAG_ENB remains in place, and makes sense, and is
checked all over the place.
The CTS_SPI_FLAGS_TAG_ENB was probably an attempt to distinguish
protocol and transport tag capabilities. At the very least this can
be confusing and prone to many bugs, so let's just assume that the
transport tag case just flows from the protocol (and vice versa)
for now.
Diffstat (limited to 'sys/cam')
-rw-r--r-- | sys/cam/cam_ccb.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/cam/cam_ccb.h b/sys/cam/cam_ccb.h index 6c5dad2..7b3770d 100644 --- a/sys/cam/cam_ccb.h +++ b/sys/cam/cam_ccb.h @@ -719,7 +719,6 @@ struct ccb_trans_settings_spi #define CTS_SPI_VALID_PPR_OPTIONS 0x10 u_int flags; #define CTS_SPI_FLAGS_DISC_ENB 0x01 -#define CTS_SPI_FLAGS_TAG_ENB 0x02 u_int sync_period; u_int sync_offset; u_int bus_width; |