diff options
author | n_hibma <n_hibma@FreeBSD.org> | 2000-10-20 00:53:30 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 2000-10-20 00:53:30 +0000 |
commit | 137e25332f0d1c346e5e7688cd0e4bb2b7c4a928 (patch) | |
tree | 4298c1abed1e35243c7ae9ed76693741ab15321c /sys/cam | |
parent | 5345ee4b3364129e0a7e5d48c76f6f1d51a91554 (diff) | |
download | FreeBSD-src-137e25332f0d1c346e5e7688cd0e4bb2b7c4a928.zip FreeBSD-src-137e25332f0d1c346e5e7688cd0e4bb2b7c4a928.tar.gz |
Add the quirk entry for the Sony Memory Stick Adapter.
Add NO_SYNQ_CACHE to the Sony DSC camera entry.
Diffstat (limited to 'sys/cam')
-rw-r--r-- | sys/cam/scsi/scsi_da.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/sys/cam/scsi/scsi_da.c b/sys/cam/scsi/scsi_da.c index 9ed3db1..004f40c 100644 --- a/sys/cam/scsi/scsi_da.c +++ b/sys/cam/scsi/scsi_da.c @@ -224,8 +224,21 @@ static struct da_quirk_entry da_quirk_table[] = /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE }, { + /* + * Sony Memory Stick adapter MSAC-US1, + * does not support READ_6 commands only READ_10. It also does + * not support sync cache (0x35). + */ + {T_DIRECT, SIP_MEDIA_REMOVABLE, "Sony", "MSAC-US1", "*"}, + /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE + }, + { + /* + * Sony DSC cameras (DSC-S30, DSC-S50, DSC-S70) + * do not support READ_6 commands, only READ_10. + */ {T_DIRECT, SIP_MEDIA_REMOVABLE, "Sony", "Sony DSC", "*"}, - /*quirks*/ DA_Q_NO_6_BYTE + /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE } }; |