From owner-svn-src-head@freebsd.org Thu Aug 11 15:06:14 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 339BDBB54E7; Thu, 11 Aug 2016 15:06:14 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 F06751604; Thu, 11 Aug 2016 15:06:13 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7BF6D9u046654; Thu, 11 Aug 2016 15:06:13 GMT (envelope-from bz@FreeBSD.org) Received: (from bz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7BF6DX4046653; Thu, 11 Aug 2016 15:06:13 GMT (envelope-from bz@FreeBSD.org) Message-Id: <201608111506.u7BF6DX4046653@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bz set sender to bz@FreeBSD.org using -f From: "Bjoern A. Zeeb" Date: Thu, 11 Aug 2016 15:06:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r303963 - head/sys/powerpc/include 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.22 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: Thu, 11 Aug 2016 15:06:14 -0000 Author: bz Date: Thu Aug 11 15:06:12 2016 New Revision: 303963 URL: https://svnweb.freebsd.org/changeset/base/303963 Log: Revert r303890 for now here as camdd fails to build on powerpc* due to device_t only being available under _KERNEL. Reported by: bde (_KERNEL in general), kib (build failure) MFC after: 1 day X-MFC with: r303890 Modified: head/sys/powerpc/include/bus_dma.h Modified: head/sys/powerpc/include/bus_dma.h ============================================================================== --- head/sys/powerpc/include/bus_dma.h Thu Aug 11 15:00:55 2016 (r303962) +++ head/sys/powerpc/include/bus_dma.h Thu Aug 11 15:06:12 2016 (r303963) @@ -30,6 +30,8 @@ #include -int bus_dma_tag_set_iommu(bus_dma_tag_t, device_t iommu, void *cookie); +struct device; + +int bus_dma_tag_set_iommu(bus_dma_tag_t, struct device *iommu, void *cookie); #endif /* _POWERPC_BUS_DMA_H_ */