Date: Tue, 14 Oct 2008 07:52:47 +0000 (UTC) From: Nick Hibma <n_hibma@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r183869 - head/sys/dev/usb Message-ID: <200810140752.m9E7qlVn099218@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: n_hibma Date: Tue Oct 14 07:52:47 2008 New Revision: 183869 URL: http://svn.freebsd.org/changeset/base/183869 Log: Fix a comment. Submitted by: Nick Mann Modified: head/sys/dev/usb/umass.c Modified: head/sys/dev/usb/umass.c ============================================================================== --- head/sys/dev/usb/umass.c Tue Oct 14 07:45:11 2008 (r183868) +++ head/sys/dev/usb/umass.c Tue Oct 14 07:52:47 2008 (r183869) @@ -1177,17 +1177,16 @@ umass_match_proto(struct umass_softc *sc dd = usbd_get_device_descriptor(udev); - /* These are 3G modes (E220, Mobile, etc.) devices with auto-install - * flash disks for Windows/MacOSX through the first interface. - * We are assuming that these vendors will not produce mass storage - * devices. See the list of supported parts in u3g, if this happens to - * be a mistake in the future. + /* These are 3G modem devices (E220, Mobile, etc.) with auto-install + * flash disks for Windows/MacOSX through the first interface. We are + * assuming that these vendors will not produce mass storage devices. + * See the list of supported parts in u3g, if this happens to be a + * mistake in the future. */ if (UGETW(dd->idVendor) == USB_VENDOR_HUAWEI) { - /* The interface is reset in the u3g driver - * (u3g_huawei_reinit()). Allow generic attachment to the - * second interface though. Some Huawei devices contain an SD - * card slot. + /* The interface is reset in the u3g driver. Allow generic + * attachment to the second interface though. Some Huawei + * devices contain an SD card slot. */ id = usbd_get_interface_descriptor(iface); if (id == NULL || id->bInterfaceNumber == 0)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200810140752.m9E7qlVn099218>