svn commit: r191870 - head/sys/dev/usb/serial

Andrew Thompson thompsa at FreeBSD.org
Thu May 7 02:17:10 UTC 2009


Author: thompsa
Date: Thu May  7 02:17:09 2009
New Revision: 191870
URL: http://svn.freebsd.org/changeset/base/191870

Log:
  Add the Sierra AC885U and increase the max ports to 8.

Modified:
  head/sys/dev/usb/serial/u3g.c

Modified: head/sys/dev/usb/serial/u3g.c
==============================================================================
--- head/sys/dev/usb/serial/u3g.c	Thu May  7 02:15:58 2009	(r191869)
+++ head/sys/dev/usb/serial/u3g.c	Thu May  7 02:17:09 2009	(r191870)
@@ -58,7 +58,7 @@ SYSCTL_INT(_hw_usb2_u3g, OID_AUTO, debug
     &u3g_debug, 0, "Debug level");
 #endif
 
-#define	U3G_MAXPORTS		4
+#define	U3G_MAXPORTS		8
 #define	U3G_CONFIG_INDEX	0
 #define	U3G_BSIZE		2048
 
@@ -202,6 +202,7 @@ static const struct usb2_device_id u3g_d
 	U3G_DEV(SIERRA, AC881, 0),
 	U3G_DEV(SIERRA, AC881E, 0),
 	U3G_DEV(SIERRA, AC881U, 0),
+	U3G_DEV(SIERRA, AC885U, 0),
 	U3G_DEV(SIERRA, EM5625, 0),
 	U3G_DEV(SIERRA, MC5720, 0),
 	U3G_DEV(SIERRA, MC5720_2, 0),


More information about the svn-src-all mailing list