Add quirks for the Olympus Digital Camera.

PR:		26295

Add quirks for the Microtech CameraMate.
This commit is contained in:
Nick Hibma 2001-08-21 22:13:53 +00:00
parent 4817ad7e09
commit b4cf607bde
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=82106

View File

@ -250,6 +250,14 @@ static struct da_quirk_entry da_quirk_table[] =
{T_OPTICAL, SIP_MEDIA_REMOVABLE, "FUJITSU", "MCF3064AP", "*"},
/*quirks*/ DA_Q_NO_6_BYTE
},
{
/*
* the Microtech USB CameraMate does not like
* the sync-cache command, or READ_6.
*/
{T_DIRECT, SIP_MEDIA_REMOVABLE, "eUSB Compact*", "Compact Flash*", "*"},
/*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE
},
{
/*
* The vendor, product and version strings coming from the
@ -258,8 +266,15 @@ static struct da_quirk_entry da_quirk_table[] =
*/
{T_DIRECT, SIP_MEDIA_REMOVABLE, "SMSC*", "USB FDC*","*"},
/*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE
},
{
/*
* Olympus digital cameras (C-3040ZOOM, C-2040ZOOM, C-1)
* do not support READ_6 commands, only READ_10.
*/
{T_DIRECT, SIP_MEDIA_REMOVABLE, "OLYMPUS", "C-*", "*"},
/*quirks*/ DA_Q_NO_6_BYTE|DA_Q_NO_SYNC_CACHE
}
};
static d_open_t daopen;