From owner-svn-src-all@FreeBSD.ORG Tue Oct 14 07:52:48 2008 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 40BF61065687; Tue, 14 Oct 2008 07:52:48 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2E9768FC13; Tue, 14 Oct 2008 07:52:48 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id m9E7qlOI099219; Tue, 14 Oct 2008 07:52:47 GMT (envelope-from n_hibma@svn.freebsd.org) Received: (from n_hibma@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id m9E7qlVn099218; Tue, 14 Oct 2008 07:52:47 GMT (envelope-from n_hibma@svn.freebsd.org) Message-Id: <200810140752.m9E7qlVn099218@svn.freebsd.org> From: Nick Hibma Date: Tue, 14 Oct 2008 07:52:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r183869 - head/sys/dev/usb X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Oct 2008 07:52:48 -0000 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)