svn commit: r309604 - head/sys/arm/include

Luiz Otavio O Souza loos at FreeBSD.org
Tue Dec 6 06:15:30 UTC 2016


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[];


More information about the svn-src-all mailing list