svn commit: r287260 - in head/sys: pc98/include x86/include

Warner Losh imp at FreeBSD.org
Fri Aug 28 15:41:11 UTC 2015


Author: imp
Date: Fri Aug 28 15:41:09 2015
New Revision: 287260
URL: https://svnweb.freebsd.org/changeset/base/287260

Log:
  Add missing ofw_machdep.h. Make x86 ofw_machdep.h work pc98 too.
  This allows the owc module to compile on pc98 and seems preferable to
  adding another special case in the build system.

Added:
  head/sys/pc98/include/ofw_machdep.h   (contents, props changed)
Modified:
  head/sys/x86/include/ofw_machdep.h

Added: head/sys/pc98/include/ofw_machdep.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/pc98/include/ofw_machdep.h	Fri Aug 28 15:41:09 2015	(r287260)
@@ -0,0 +1,6 @@
+/*-
+ * This file is in the public domain.
+ */
+/* $FreeBSD$ */
+
+#include <i386/ofw_machdep.h>

Modified: head/sys/x86/include/ofw_machdep.h
==============================================================================
--- head/sys/x86/include/ofw_machdep.h	Fri Aug 28 15:36:05 2015	(r287259)
+++ head/sys/x86/include/ofw_machdep.h	Fri Aug 28 15:41:09 2015	(r287260)
@@ -29,7 +29,7 @@
 #ifndef _MACHINE_OFW_MACHDEP_H_
 #define _MACHINE_OFW_MACHDEP_H_
 
-#include <x86/bus.h>
+#include <machine/bus.h>
 #include <vm/vm.h>
 
 typedef	uint32_t	cell_t;


More information about the svn-src-all mailing list