svn commit: r289547 - in head/sys/arm: annapurna/alpine qemu

Ian Lepore ian at FreeBSD.org
Sun Oct 18 20:32:38 UTC 2015


Author: ian
Date: Sun Oct 18 20:32:37 2015
New Revision: 289547
URL: https://svnweb.freebsd.org/changeset/base/289547

Log:
  Include "opt_platform.h" early so that the FDT option is visible as needed.

Modified:
  head/sys/arm/annapurna/alpine/common.c
  head/sys/arm/qemu/virt_common.c

Modified: head/sys/arm/annapurna/alpine/common.c
==============================================================================
--- head/sys/arm/annapurna/alpine/common.c	Sun Oct 18 20:20:57 2015	(r289546)
+++ head/sys/arm/annapurna/alpine/common.c	Sun Oct 18 20:32:37 2015	(r289547)
@@ -29,6 +29,8 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
+#include "opt_platform.h"
+
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/bus.h>

Modified: head/sys/arm/qemu/virt_common.c
==============================================================================
--- head/sys/arm/qemu/virt_common.c	Sun Oct 18 20:20:57 2015	(r289546)
+++ head/sys/arm/qemu/virt_common.c	Sun Oct 18 20:32:37 2015	(r289547)
@@ -28,6 +28,8 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
+#include "opt_platform.h"
+
 #include <sys/param.h>
 #include <sys/systm.h>
 


More information about the svn-src-all mailing list