From owner-svn-src-all@FreeBSD.ORG Fri Dec 30 21:22:10 2011 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 B2F621065675; Fri, 30 Dec 2011 21:22:10 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A1E288FC08; Fri, 30 Dec 2011 21:22:10 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id pBULMA0V031218; Fri, 30 Dec 2011 21:22:10 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id pBULMAuS031216; Fri, 30 Dec 2011 21:22:10 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <201112302122.pBULMAuS031216@svn.freebsd.org> From: Marius Strobl Date: Fri, 30 Dec 2011 21:22:10 +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: r229032 - head/sys/modules/cfi 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: Fri, 30 Dec 2011 21:22:10 -0000 Author: marius Date: Fri Dec 30 21:22:10 2011 New Revision: 229032 URL: http://svn.freebsd.org/changeset/base/229032 Log: Add header required by cfi_bus_fdt.c. Modified: head/sys/modules/cfi/Makefile Modified: head/sys/modules/cfi/Makefile ============================================================================== --- head/sys/modules/cfi/Makefile Fri Dec 30 21:02:32 2011 (r229031) +++ head/sys/modules/cfi/Makefile Fri Dec 30 21:22:10 2011 (r229032) @@ -7,10 +7,10 @@ SRCS= ${_cfi_bus} cfi_core.c cfi_dev.c SRCS+= bus_if.h device_if.h opt_cfi.h .if ${MACHINE} == "arm" -_cfi_bus= cfi_bus_fdt.c cfi_bus_ixp4xx.c +_cfi_bus= cfi_bus_fdt.c cfi_bus_ixp4xx.c ofw_bus_if.h .endif .if ${MACHINE} == "powerpc" -_cfi_bus= cfi_bus_fdt.c +_cfi_bus= cfi_bus_fdt.c ofw_bus_if.h .endif opt_cfi.h: