Date: Fri, 14 Mar 2003 13:44:11 +0100 (CET) From: Magnus B{ckstr|m <b@etek.chalmers.se> To: Nate Lawson <njl@FreeBSD.org> Cc: src-committers@FreeBSD.org, <cvs-src@FreeBSD.org>, <cvs-all@FreeBSD.org> Subject: Re: cvs commit: src/sys/dev/usb umass.c src/sys/cam/scsi scsi_da.c Message-ID: <Pine.BSF.4.44.0303141341500.36379-100000@scrooge.etek.chalmers.se> In-Reply-To: <200303110155.h2B1tBJN074389@repoman.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Mon, 10 Mar 2003, Nate Lawson wrote: > Subject: cvs commit: src/sys/dev/usb umass.c src/sys/cam/scsi scsi_da.c > > njl 2003/03/10 17:55:11 PST > > FreeBSD src repository > > Modified files: > sys/dev/usb umass.c > sys/cam/scsi scsi_da.c > Log: > 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 > > Revision Changes Path > 1.132 +9 -0 src/sys/cam/scsi/scsi_da.c > 1.78 +5 -0 src/sys/dev/usb/umass.c > Nate, small typo in src/sys/dev/usb/umass.c: ------------8<----------- Index: src-4.7-medic/sys/dev/usb/umass.c diff -c src-4.7-medic/sys/dev/usb/umass.c:1.1.1.2 src-4.7-medic/sys/dev/usb/umass.c:1.2 *** src-4.7-medic/sys/dev/usb/umass.c:1.1.1.2 Fri Mar 14 09:52:24 2003 --- src-4.7-medic/sys/dev/usb/umass.c Fri Mar 14 13:38:51 2003 *************** *** 616,622 **** * The Pentax Optio 230 requires RS_NO_CLEAR_UA * PR: kern/46369 */ ! if (UGETW(dd->idVendor) == USB_VENDOR_ASAHIOPTICAL) { && UGETW(dd->idProduct) == USB_PRODUCT_ASAHIOPTICAL_OPTIO230) { sc->quirks |= RS_NO_CLEAR_UA; } --- 616,622 ---- * The Pentax Optio 230 requires RS_NO_CLEAR_UA * PR: kern/46369 */ ! if (UGETW(dd->idVendor) == USB_VENDOR_ASAHIOPTICAL && UGETW(dd->idProduct) == USB_PRODUCT_ASAHIOPTICAL_OPTIO230) { sc->quirks |= RS_NO_CLEAR_UA; } ------------8<----------- Magnus To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.44.0303141341500.36379-100000>