summaryrefslogtreecommitdiff
path: root/sys/dev/ata/atapi-cam.c
diff options
context:
space:
mode:
authorMatt Jacob <mjacob@FreeBSD.org>2006-11-02 00:54:38 +0000
committerMatt Jacob <mjacob@FreeBSD.org>2006-11-02 00:54:38 +0000
commitbd3fd815a7fbc96f1506dfdcac840b94cff28d00 (patch)
tree9b84492a0966128feabcb74bbcc277bbdb6640c1 /sys/dev/ata/atapi-cam.c
parentedc9f4ae99fa00b065cb47c1d0d0737686ab3dca (diff)
Notes
Diffstat (limited to 'sys/dev/ata/atapi-cam.c')
-rw-r--r--sys/dev/ata/atapi-cam.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/sys/dev/ata/atapi-cam.c b/sys/dev/ata/atapi-cam.c
index e9ef5785b6f7..28a95d073701 100644
--- a/sys/dev/ata/atapi-cam.c
+++ b/sys/dev/ata/atapi-cam.c
@@ -363,12 +363,10 @@ atapi_action(struct cam_sim *sim, union ccb *ccb)
cpi->unit_number = cam_sim_unit(sim);
cpi->bus_id = cam_sim_bus(sim);
cpi->base_transfer_speed = 3300;
-#ifdef CAM_NEW_TRAN_CODE
cpi->transport = XPORT_ATA;
cpi->transport_version = 2;
cpi->protocol = PROTO_SCSI;
cpi->protocol_version = SCSI_REV_2;
-#endif
if (softc->ata_ch && tid != CAM_TARGET_WILDCARD) {
mtx_lock(&softc->state_lock);
@@ -442,7 +440,6 @@ atapi_action(struct cam_sim *sim, union ccb *ccb)
case XPT_GET_TRAN_SETTINGS: {
struct ccb_trans_settings *cts = &ccb->cts;
-#ifdef CAM_NEW_TRAN_CODE
cts->protocol = PROTO_SCSI;
cts->protocol_version = SCSI_REV_2;
cts->transport = XPORT_ATA;
@@ -450,15 +447,6 @@ atapi_action(struct cam_sim *sim, union ccb *ccb)
cts->proto_specific.valid = 0;
cts->xport_specific.valid = 0;
/* nothing more to do */
-#else
- /*
- * The default CAM transport code is very SCSI-specific and
- * doesn't understand IDE speeds very well. Be silent about it
- * here and let it default to what is set in XPT_PATH_INQ
- */
- cts->valid = (CCB_TRANS_DISC_VALID | CCB_TRANS_TQ_VALID);
- cts->flags &= ~(CCB_TRANS_DISC_ENB | CCB_TRANS_TAG_ENB);
-#endif
ccb->ccb_h.status = CAM_REQ_CMP;
CAM_DEBUG(ccb->ccb_h.path, CAM_DEBUG_SUBTRACE, ("GET_TRAN_SETTINGS\n"));
xpt_done(ccb);