svn commit: r223607 - stable/8/sys/dev/usb/serial

Hans Petter Selasky hselasky at FreeBSD.org
Mon Jun 27 21:14:25 UTC 2011


Author: hselasky
Date: Mon Jun 27 21:14:25 2011
New Revision: 223607
URL: http://svn.freebsd.org/changeset/base/223607

Log:
  Add missing chunk in MFC of r215095.

Modified:
  stable/8/sys/dev/usb/serial/u3g.c

Modified: stable/8/sys/dev/usb/serial/u3g.c
==============================================================================
--- stable/8/sys/dev/usb/serial/u3g.c	Mon Jun 27 21:04:35 2011	(r223606)
+++ stable/8/sys/dev/usb/serial/u3g.c	Mon Jun 27 21:14:25 2011	(r223607)
@@ -684,9 +684,9 @@ u3g_test_autoinst(void *arg, struct usb_
 		return;		/* no device match */
 
 	if (bootverbose) {
-		printf("Ejecting 0x%04x:0x%04x using method %ld\n",
-		       uaa->info.idVendor, uaa->info.idProduct,
-		       USB_GET_DRIVER_INFO(uaa));
+		printf("Ejecting %s %s using method %ld\n",
+		       usb_get_manufacturer(udev),
+		       usb_get_product(udev), method);
 	}
 
 	switch (method) {


More information about the svn-src-stable-8 mailing list