From 84fc65da9f2c9ab8aa27f3e9c158ea38eaaac1f9 Mon Sep 17 00:00:00 2001 From: Nick Hibma Date: Tue, 14 Oct 2008 07:52:47 +0000 Subject: [PATCH] Fix a comment. Submitted by: Nick Mann --- sys/dev/usb/umass.c | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/sys/dev/usb/umass.c b/sys/dev/usb/umass.c index 0f0756cf79c..5063426ab5f 100644 --- a/sys/dev/usb/umass.c +++ b/sys/dev/usb/umass.c @@ -1177,17 +1177,16 @@ umass_match_proto(struct umass_softc *sc, usbd_interface_handle iface, 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)