From owner-svn-src-all@FreeBSD.ORG Fri Oct 24 07:19:09 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 75A971065671; Fri, 24 Oct 2008 07:19:09 +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 64BB88FC0C; Fri, 24 Oct 2008 07:19:09 +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 m9O7J9vS083381; Fri, 24 Oct 2008 07:19:09 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 m9O7J9XX083380; Fri, 24 Oct 2008 07:19:09 GMT (envelope-from n_hibma@svn.freebsd.org) Message-Id: <200810240719.m9O7J9XX083380@svn.freebsd.org> From: Nick Hibma Date: Fri, 24 Oct 2008 07:19: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: r184221 - head/sys/modules/u3g 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:19:09 -0000 Author: n_hibma Date: Fri Oct 24 07:19:09 2008 New Revision: 184221 URL: http://svn.freebsd.org/changeset/base/184221 Log: After adding U3G_DEBUG to LINT we need to create the opt_u3g.h file when building the module. Modified: head/sys/modules/u3g/Makefile Modified: head/sys/modules/u3g/Makefile ============================================================================== --- head/sys/modules/u3g/Makefile Fri Oct 24 07:16:13 2008 (r184220) +++ head/sys/modules/u3g/Makefile Fri Oct 24 07:19:09 2008 (r184221) @@ -3,6 +3,10 @@ .PATH: ${.CURDIR}/../../dev/usb KMOD= u3g -SRCS= u3g.c ucomvar.h opt_usb.h device_if.h bus_if.h usbdevs.h +SRCS= opt_usb.h opt_u3g.h \ + device_if.h bus_if.h \ + usbdevs.h \ + ucomvar.h \ + u3g.c .include