1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

- Disable faking T_DIRECT as T_RBC because we have PIM_NO_6_BYTE now.

This commit is contained in:
Hidetoshi Shimokawa 2003-08-01 02:24:39 +00:00
parent 882d8469af
commit 3722fcec4b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=118291

View File

@ -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