diff options
author | n_hibma <n_hibma@FreeBSD.org> | 2001-07-20 09:20:43 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 2001-07-20 09:20:43 +0000 |
commit | 6a2caa5a1a0a16aba84bd7af5133ca7f05d208ed (patch) | |
tree | 269243026b7f4bc1bf18f7bf96c1ee33add101a9 /sys/cam | |
parent | 730f703e6ae2e19d0b860653b68e2e2c58c66dbd (diff) | |
download | FreeBSD-src-6a2caa5a1a0a16aba84bd7af5133ca7f05d208ed.zip FreeBSD-src-6a2caa5a1a0a16aba84bd7af5133ca7f05d208ed.tar.gz |
Support for USB floppies based upon SMSC USB FDD controller.
PR: 28877
Submitted by: Larry Baird <lab@gta.com>
MFC after: 1 week
Diffstat (limited to 'sys/cam')
-rw-r--r-- | sys/cam/scsi/scsi_da.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/cam/scsi/scsi_da.c b/sys/cam/scsi/scsi_da.c index 7301b1a..832b26c 100644 --- a/sys/cam/scsi/scsi_da.c +++ b/sys/cam/scsi/scsi_da.c @@ -249,7 +249,17 @@ static struct da_quirk_entry da_quirk_table[] = { {T_OPTICAL, SIP_MEDIA_REMOVABLE, "FUJITSU", "MCF3064AP", "*"}, /*quirks*/ DA_Q_NO_6_BYTE + }, + { + /* + * The vendor, product and version strings coming from the + * controller are null terminated instead of being padded with + * spaces. The trailing wildcard character '*' is required. + */ + {T_DIRECT, SIP_MEDIA_REMOVABLE, "SMSC*", "USB FDC*","*"}, + /*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE } + }; static d_open_t daopen; |