From owner-svn-src-all@FreeBSD.ORG Tue Oct 13 18:07:56 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 B509F106566B; Tue, 13 Oct 2009 18:07:56 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A4C0A8FC13; Tue, 13 Oct 2009 18:07:56 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n9DI7uQK012588; Tue, 13 Oct 2009 18:07:56 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n9DI7upT012586; Tue, 13 Oct 2009 18:07:56 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200910131807.n9DI7upT012586@svn.freebsd.org> From: John Baldwin Date: Tue, 13 Oct 2009 18:07:56 +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: r198041 - head/sys/modules/ubser 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: Tue, 13 Oct 2009 18:07:56 -0000 Author: jhb Date: Tue Oct 13 18:07:56 2009 New Revision: 198041 URL: http://svn.freebsd.org/changeset/base/198041 Log: Fix this module so it at least builds. Note that it isn't hooked up to the build however, and ubser(4) is also not present in any kernel configs (including NOTES). Modified: head/sys/modules/ubser/Makefile Modified: head/sys/modules/ubser/Makefile ============================================================================== --- head/sys/modules/ubser/Makefile Tue Oct 13 17:57:06 2009 (r198040) +++ head/sys/modules/ubser/Makefile Tue Oct 13 18:07:56 2009 (r198041) @@ -1,9 +1,9 @@ # $FreeBSD$ S= ${.CURDIR}/../.. -.PATH: $S/dev/usb +.PATH: $S/dev/usb/serial KMOD= ubser -SRCS= ubser.c ubser.h opt_usb.h device_if.h bus_if.h usbdevs.h +SRCS= ubser.c opt_usb.h device_if.h bus_if.h usbdevs.h .include