From owner-svn-src-all@FreeBSD.ORG Fri Oct 24 07:16:13 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 B0CB71065674; Fri, 24 Oct 2008 07:16:13 +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 9F2AC8FC13; Fri, 24 Oct 2008 07:16:13 +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 m9O7GDlG083297; Fri, 24 Oct 2008 07:16:13 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 m9O7GDX2083294; Fri, 24 Oct 2008 07:16:13 GMT (envelope-from n_hibma@svn.freebsd.org) Message-Id: <200810240716.m9O7GDX2083294@svn.freebsd.org> From: Nick Hibma Date: Fri, 24 Oct 2008 07:16:13 +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: r184220 - in head/sys: conf 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: Fri, 24 Oct 2008 07:16:13 -0000 Author: n_hibma Date: Fri Oct 24 07:16:13 2008 New Revision: 184220 URL: http://svn.freebsd.org/changeset/base/184220 Log: Add U3G_DEBUG to LINT Modified: head/sys/conf/NOTES head/sys/conf/options head/sys/dev/usb/u3g.c Modified: head/sys/conf/NOTES ============================================================================== --- head/sys/conf/NOTES Fri Oct 24 07:12:05 2008 (r184219) +++ head/sys/conf/NOTES Fri Oct 24 07:16:13 2008 (r184220) @@ -2419,7 +2419,7 @@ device uscanner # # USB serial support device ucom -# USB support for 3G modem cards by Option, Huawei and Sierra +# USB support for 3G modem cards by Option, Novatel, Huawei and Sierra device u3g # USB support for Technologies ARK3116 based serial adapters device uark @@ -2486,6 +2486,7 @@ device rum # debugging options for the USB subsystem # options USB_DEBUG +options U3G_DEBUG # options for ukbd: options UKBD_DFLT_KEYMAP # specify the built-in keymap Modified: head/sys/conf/options ============================================================================== --- head/sys/conf/options Fri Oct 24 07:12:05 2008 (r184219) +++ head/sys/conf/options Fri Oct 24 07:16:13 2008 (r184220) @@ -618,6 +618,7 @@ BUS_DEBUG opt_bus.h # options for USB support USB_DEBUG opt_usb.h USBVERBOSE opt_usb.h +U3G_DEBUG opt_u3g.h UKBD_DFLT_KEYMAP opt_ukbd.h UPLCOM_INTR_INTERVAL opt_uplcom.h UVSCOM_DEFAULT_OPKTSIZE opt_uvscom.h Modified: head/sys/dev/usb/u3g.c ============================================================================== --- head/sys/dev/usb/u3g.c Fri Oct 24 07:12:05 2008 (r184219) +++ head/sys/dev/usb/u3g.c Fri Oct 24 07:16:13 2008 (r184220) @@ -46,6 +46,7 @@ #include +#include "opt_u3g.h" #include "usbdevs.h" //#define U3G_DEBUG