Support for USB floppies based upon SMSC USB FDD controller.

PR:		28877
Submitted by:	Larry Baird <lab@gta.com>
MFC after:	1 week
This commit is contained in:
Nick Hibma 2001-07-20 09:20:43 +00:00
parent 87242f3724
commit 53f8b5d2f1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=80033

View File

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