From e96441b1ee69d1df234fc11d76ccb8bfa96c9997 Mon Sep 17 00:00:00 2001 From: Nick Hibma Date: Wed, 15 Mar 2000 22:44:03 +0000 Subject: [PATCH] Add a quirk entry for Y-E Data USB floppy drive. Driver follows in the next few days. --- sys/cam/scsi/scsi_da.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/sys/cam/scsi/scsi_da.c b/sys/cam/scsi/scsi_da.c index d8ad7031fa3b..a9e1e219d091 100644 --- a/sys/cam/scsi/scsi_da.c +++ b/sys/cam/scsi/scsi_da.c @@ -172,6 +172,16 @@ static struct da_quirk_entry da_quirk_table[] = */ {T_DIRECT, SIP_MEDIA_FIXED, "QUANTUM", "VIKING 2*", "*"}, /*quirks*/ DA_Q_NO_6_BYTE + }, + { + /* + * This USB floppy drive uses the UFI command set. This + * command set is a derivative of the ATAPI command set and + * does not support READ_6 commands only READ_10. It also does + * not support sync cache (0x35). + */ + {T_DIRECT, SIP_MEDIA_REMOVABLE, "Y-E DATA", "USB-FDU", "*"}, + /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE } };