diff options
author | njl <njl@FreeBSD.org> | 2003-03-11 01:55:11 +0000 |
---|---|---|
committer | njl <njl@FreeBSD.org> | 2003-03-11 01:55:11 +0000 |
commit | e714ae83becee72c8c5b0f902de7af9c9dab8cb2 (patch) | |
tree | 19bf25d314385e2c017481364e182ec16eccbdbc /sys/cam | |
parent | 0bb11d1227aad71adcc0a52b8fe67fa189fe2893 (diff) | |
download | FreeBSD-src-e714ae83becee72c8c5b0f902de7af9c9dab8cb2.zip FreeBSD-src-e714ae83becee72c8c5b0f902de7af9c9dab8cb2.tar.gz |
Quirk for Pentax Optio 230 USB camera. Note that other products probably
use the underlying AsahiOptical USB chip and thus this quirk may need to
be generalized in the future.
PR: kern/46369
Submitted by: Tim Vanderhoek <vanderh@ecf.utoronto.ca>
MFC After: 3 days
Diffstat (limited to 'sys/cam')
-rw-r--r-- | sys/cam/scsi/scsi_da.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/cam/scsi/scsi_da.c b/sys/cam/scsi/scsi_da.c index d1dab09..fed26ba 100644 --- a/sys/cam/scsi/scsi_da.c +++ b/sys/cam/scsi/scsi_da.c @@ -444,6 +444,15 @@ static struct da_quirk_entry da_quirk_table[] = */ {T_DIRECT, SIP_MEDIA_REMOVABLE, "LEXAR", "DIGITAL FILM", "*"}, /*quirks*/ DA_Q_NO_6_BYTE + }, + { + /* + * Pentax USB Optio 230 camera + * PR: kern/46369 + */ + {T_DIRECT, SIP_MEDIA_REMOVABLE, + "PENTAX", "DIGITAL_CAMERA", "*"}, + /*quirks*/ DA_Q_NO_6_BYTE } }; |