Date: Tue, 6 Dec 2016 06:15:28 +0000 (UTC) From: Luiz Otavio O Souza <loos@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r309604 - head/sys/arm/include Message-ID: <201612060615.uB66FSUW012405@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: loos Date: Tue Dec 6 06:15:28 2016 New Revision: 309604 URL: https://svnweb.freebsd.org/changeset/base/309604 Log: Fix the armv6 build after r309553. Sponsored by: Rubicon Communications, LLC (Netgate) Modified: head/sys/arm/include/pmap.h Modified: head/sys/arm/include/pmap.h ============================================================================== --- head/sys/arm/include/pmap.h Tue Dec 6 06:12:01 2016 (r309603) +++ head/sys/arm/include/pmap.h Tue Dec 6 06:15:28 2016 (r309604) @@ -30,7 +30,6 @@ #ifndef _MACHINE_PMAP_H_ #define _MACHINE_PMAP_H_ -#include <sys/systm.h> #if __ARM_ARCH >= 6 #include <machine/pmap-v6.h> #else @@ -38,6 +37,7 @@ #endif #ifdef _KERNEL +#include <sys/systm.h> extern vm_paddr_t dump_avail[]; extern vm_paddr_t phys_avail[];
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612060615.uB66FSUW012405>