From b011fce09f1c0507c384f8b2df2f443d25566280 Mon Sep 17 00:00:00 2001 From: Andrew Turner Date: Fri, 18 Mar 2016 16:32:22 +0000 Subject: [PATCH] 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 --- sys/arm64/arm64/nexus.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arm64/arm64/nexus.c b/sys/arm64/arm64/nexus.c index ec2a16c6289..f48a7aab0a9 100644 --- a/sys/arm64/arm64/nexus.c +++ b/sys/arm64/arm64/nexus.c @@ -39,6 +39,9 @@ * and I/O memory address space. */ +#include "opt_acpi.h" +#include "opt_platform.h" + #include __FBSDID("$FreeBSD$"); @@ -60,9 +63,6 @@ __FBSDID("$FreeBSD$"); #include #include -#include "opt_acpi.h" -#include "opt_platform.h" - #ifdef FDT #include #include "ofw_bus_if.h"