diff options
author | iedowse <iedowse@FreeBSD.org> | 2002-11-01 01:13:20 +0000 |
---|---|---|
committer | iedowse <iedowse@FreeBSD.org> | 2002-11-01 01:13:20 +0000 |
commit | ab4014bff87f3a779f21a493ccf9ee736bee0151 (patch) | |
tree | 3acda769b76a3c8faa467c0636347f78cb6c0b22 | |
parent | b7d774ad9792415680529ff3b980c782e6017d69 (diff) | |
download | FreeBSD-src-ab4014bff87f3a779f21a493ccf9ee736bee0151.zip FreeBSD-src-ab4014bff87f3a779f21a493ccf9ee736bee0151.tar.gz |
Specify the correct protocol for the Olympus C-1 camera. It appears
that this entry was accidentally given the wrong protocol in revision
1.61.
PR: kern/42417
Submitted by: "Moriki, Toshiomi" <toshiomi@whi.m-net.ne.jp>
-rw-r--r-- | sys/dev/usb/umass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/umass.c b/sys/dev/usb/umass.c index b5deb99..cfd167c 100644 --- a/sys/dev/usb/umass.c +++ b/sys/dev/usb/umass.c @@ -346,7 +346,7 @@ Static struct umass_devdescr_t umass_devdescrs[] = { NO_TEST_UNIT_READY | NO_START_STOP }, { USB_VENDOR_OLYMPUS, USB_PRODUCT_OLYMPUS_C1, RID_WILDCARD, - UMASS_PROTO_ATAPI | UMASS_PROTO_CBI_I, + UMASS_PROTO_SCSI | UMASS_PROTO_BBB, WRONG_CSWSIG }, { USB_VENDOR_SCANLOGIC, USB_PRODUCT_SCANLOGIC_SL11R, RID_WILDCARD, |