From owner-svn-src-all@FreeBSD.ORG Thu May 7 02:17:10 2009 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 06AF4106566B; Thu, 7 May 2009 02:17:10 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E8D458FC0C; Thu, 7 May 2009 02:17:09 +0000 (UTC) (envelope-from thompsa@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 n472H9Xn037086; Thu, 7 May 2009 02:17:09 GMT (envelope-from thompsa@svn.freebsd.org) Received: (from thompsa@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n472H9vE037085; Thu, 7 May 2009 02:17:09 GMT (envelope-from thompsa@svn.freebsd.org) Message-Id: <200905070217.n472H9vE037085@svn.freebsd.org> From: Andrew Thompson Date: Thu, 7 May 2009 02:17:09 +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: r191870 - head/sys/dev/usb/serial 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: Thu, 07 May 2009 02:17:10 -0000 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),