From owner-svn-src-head@FreeBSD.ORG Sat Jun 6 16:20:40 2015 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F100A824; Sat, 6 Jun 2015 16:20:39 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DEA6D139C; Sat, 6 Jun 2015 16:20:39 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t56GKdKF029143; Sat, 6 Jun 2015 16:20:39 GMT (envelope-from marcel@FreeBSD.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t56GKdf8029142; Sat, 6 Jun 2015 16:20:39 GMT (envelope-from marcel@FreeBSD.org) Message-Id: <201506061620.t56GKdf8029142@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marcel set sender to marcel@FreeBSD.org using -f From: Marcel Moolenaar Date: Sat, 6 Jun 2015 16:20:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r284081 - head/sys/modules/proto X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 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: Sat, 06 Jun 2015 16:20:40 -0000 Author: marcel Date: Sat Jun 6 16:20:39 2015 New Revision: 284081 URL: https://svnweb.freebsd.org/changeset/base/284081 Log: Add proto_busdma.c to the module. Modified: head/sys/modules/proto/Makefile Modified: head/sys/modules/proto/Makefile ============================================================================== --- head/sys/modules/proto/Makefile Sat Jun 6 16:14:03 2015 (r284080) +++ head/sys/modules/proto/Makefile Sat Jun 6 16:20:39 2015 (r284081) @@ -5,6 +5,7 @@ KMOD= proto SRCS= \ proto_bus_pci.c \ + proto_busdma.c \ proto_core.c SRCS+= \