From owner-svn-src-head@FreeBSD.ORG Mon Nov 4 20:00:21 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id F0C48123; Mon, 4 Nov 2013 20:00:21 +0000 (UTC) (envelope-from ian@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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DED922ECB; Mon, 4 Nov 2013 20:00:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA4K0L4Y016159; Mon, 4 Nov 2013 20:00:21 GMT (envelope-from ian@svn.freebsd.org) Received: (from ian@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA4K0LvG016156; Mon, 4 Nov 2013 20:00:21 GMT (envelope-from ian@svn.freebsd.org) Message-Id: <201311042000.rA4K0LvG016156@svn.freebsd.org> From: Ian Lepore Date: Mon, 4 Nov 2013 20:00:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r257649 - in head/sys: conf dev/fdt 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.14 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, 04 Nov 2013 20:00:22 -0000 Author: ian Date: Mon Nov 4 20:00:21 2013 New Revision: 257649 URL: http://svnweb.freebsd.org/changeset/base/257649 Log: This files should have been included in r257648. Modified: head/sys/conf/files.arm head/sys/dev/fdt/fdt_pci.c Modified: head/sys/conf/files.arm ============================================================================== --- head/sys/conf/files.arm Mon Nov 4 19:44:37 2013 (r257648) +++ head/sys/conf/files.arm Mon Nov 4 20:00:21 2013 (r257649) @@ -14,6 +14,7 @@ arm/arm/cpufunc_asm_armv4.S standard arm/arm/db_disasm.c optional ddb arm/arm/db_interface.c optional ddb arm/arm/db_trace.c optional ddb +arm/arm/devmap.c standard arm/arm/disassem.c optional ddb arm/arm/dump_machdep.c standard arm/arm/elf_machdep.c standard Modified: head/sys/dev/fdt/fdt_pci.c ============================================================================== --- head/sys/dev/fdt/fdt_pci.c Mon Nov 4 19:44:37 2013 (r257648) +++ head/sys/dev/fdt/fdt_pci.c Mon Nov 4 20:00:21 2013 (r257649) @@ -42,6 +42,9 @@ __FBSDID("$FreeBSD$"); #include #include +#if defined(__arm__) +#include +#endif #include "ofw_bus_if.h" #include "pcib_if.h"