From owner-svn-src-head@FreeBSD.ORG Mon Feb 9 22:23:02 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62BAC10656EF; Mon, 9 Feb 2009 22:23:02 +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 4F9878FC18; Mon, 9 Feb 2009 22:23:02 +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 n19MN2Ou073371; Mon, 9 Feb 2009 22:23:02 GMT (envelope-from thompsa@svn.freebsd.org) Received: (from thompsa@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n19MN2TU073369; Mon, 9 Feb 2009 22:23:02 GMT (envelope-from thompsa@svn.freebsd.org) Message-Id: <200902092223.n19MN2TU073369@svn.freebsd.org> From: Andrew Thompson Date: Mon, 9 Feb 2009 22:23:02 +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: r188422 - in head/sys: conf dev/usb2/core modules/usb2/core X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2009 22:23:03 -0000 Author: thompsa Date: Mon Feb 9 22:23:01 2009 New Revision: 188422 URL: http://svn.freebsd.org/changeset/base/188422 Log: Remove usb2_config_td.[ch], they are no longer used. Deleted: head/sys/dev/usb2/core/usb2_config_td.c head/sys/dev/usb2/core/usb2_config_td.h Modified: head/sys/conf/files head/sys/modules/usb2/core/Makefile Modified: head/sys/conf/files ============================================================================== --- head/sys/conf/files Mon Feb 9 22:22:09 2009 (r188421) +++ head/sys/conf/files Mon Feb 9 22:23:01 2009 (r188422) @@ -1567,7 +1567,6 @@ dev/usb2/ndis/usb2_ndis.c optional usb2 # dev/usb2/core/usb2_busdma.c optional usb2_core dev/usb2/core/usb2_compat_linux.c optional usb2_core -dev/usb2/core/usb2_config_td.c optional usb2_core dev/usb2/core/usb2_core.c optional usb2_core dev/usb2/core/usb2_debug.c optional usb2_core dev/usb2/core/usb2_dev.c optional usb2_core Modified: head/sys/modules/usb2/core/Makefile ============================================================================== --- head/sys/modules/usb2/core/Makefile Mon Feb 9 22:22:09 2009 (r188421) +++ head/sys/modules/usb2/core/Makefile Mon Feb 9 22:23:01 2009 (r188422) @@ -35,7 +35,6 @@ SRCS+= bus_if.h usb2_if.h device_if.h vn SRCS+= usb2_if.c SRCS+= usb2_busdma.c SRCS+= usb2_compat_linux.c -SRCS+= usb2_config_td.c SRCS+= usb2_core.c SRCS+= usb2_debug.c SRCS+= usb2_dev.c