svn commit: r297030 - head/sys/arm64/arm64

Andrew Turner andrew at FreeBSD.org
Fri Mar 18 16:32:24 UTC 2016


Author: andrew
Date: Fri Mar 18 16:32:22 2016
New Revision: 297030
URL: https://svnweb.freebsd.org/changeset/base/297030

Log:
  Move the opt_ files to be included first so their definitions can be used
  from within all further included files.
  
  Obtained from:	ABT Systems Ltd
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/arm64/arm64/nexus.c

Modified: head/sys/arm64/arm64/nexus.c
==============================================================================
--- head/sys/arm64/arm64/nexus.c	Fri Mar 18 16:29:58 2016	(r297029)
+++ head/sys/arm64/arm64/nexus.c	Fri Mar 18 16:32:22 2016	(r297030)
@@ -39,6 +39,9 @@
  * and I/O memory address space.
  */
 
+#include "opt_acpi.h"
+#include "opt_platform.h"
+
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
@@ -60,9 +63,6 @@ __FBSDID("$FreeBSD$");
 #include <machine/resource.h>
 #include <machine/intr.h>
 
-#include "opt_acpi.h"
-#include "opt_platform.h"
-
 #ifdef FDT
 #include <dev/ofw/openfirm.h>
 #include "ofw_bus_if.h"


More information about the svn-src-head mailing list