From owner-svn-src-stable@FreeBSD.ORG Thu May 20 08:43:29 2010 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF24D1065672; Thu, 20 May 2010 08:43:29 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (unknown [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DE9278FC21; Thu, 20 May 2010 08:43:29 +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 o4K8hTuD042991; Thu, 20 May 2010 08:43:29 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o4K8hTD3042989; Thu, 20 May 2010 08:43:29 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <201005200843.o4K8hTD3042989@svn.freebsd.org> From: Marius Strobl Date: Thu, 20 May 2010 08:43:29 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r208338 - stable/8/sys/modules/cas X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 May 2010 08:43:30 -0000 Author: marius Date: Thu May 20 08:43:29 2010 New Revision: 208338 URL: http://svn.freebsd.org/changeset/base/208338 Log: MFC: r208143 Add the ofw_bus_if.h dependency introduced with r207585 (MFC'ed to stable/8 in r208086). Modified: stable/8/sys/modules/cas/Makefile Directory Properties: stable/8/sys/ (props changed) stable/8/sys/amd64/include/xen/ (props changed) stable/8/sys/cddl/contrib/opensolaris/ (props changed) stable/8/sys/contrib/dev/acpica/ (props changed) stable/8/sys/contrib/pf/ (props changed) stable/8/sys/dev/xen/xenpci/ (props changed) stable/8/sys/geom/sched/ (props changed) Modified: stable/8/sys/modules/cas/Makefile ============================================================================== --- stable/8/sys/modules/cas/Makefile Thu May 20 08:15:06 2010 (r208337) +++ stable/8/sys/modules/cas/Makefile Thu May 20 08:43:29 2010 (r208338) @@ -3,6 +3,10 @@ .PATH: ${.CURDIR}/../../dev/cas KMOD= if_cas -SRCS= bus_if.h device_if.h if_cas.c miibus_if.h pci_if.h +SRCS= bus_if.h device_if.h if_cas.c miibus_if.h pci_if.h ${ofw_bus_if} + +.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc64" +ofw_bus_if= ofw_bus_if.h +.endif .include