From 3722fcec4bbc4ce99c152ee6ae71d474f8bcec8b Mon Sep 17 00:00:00 2001 From: Hidetoshi Shimokawa Date: Fri, 1 Aug 2003 02:24:39 +0000 Subject: [PATCH] - Disable faking T_DIRECT as T_RBC because we have PIM_NO_6_BYTE now. --- sys/dev/firewire/sbp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/firewire/sbp.c b/sys/dev/firewire/sbp.c index 15121aae4bd..75faffe2e10 100644 --- a/sys/dev/firewire/sbp.c +++ b/sys/dev/firewire/sbp.c @@ -1468,17 +1468,17 @@ END_DEBUG inq = (struct scsi_inquiry_data *) ccb->csio.data_ptr; switch (SID_TYPE(inq)) { case T_DIRECT: +#if 0 /* * XXX Convert Direct Access device to RBC. * I've never seen FireWire DA devices which support READ_6. */ -#if 1 if (SID_TYPE(inq) == T_DIRECT) inq->device |= T_RBC; /* T_DIRECT == 0 */ #endif /* fall through */ case T_RBC: - /* enable tag queuing */ + /* enable tagged queuing */ #if 1 inq->flags |= SID_CmdQue; #endif