Module Name: src
Committed By: pgoyette
Date: Mon Dec 12 02:51:24 UTC 2016
Modified Files:
src/sys/arch/amd64/amd64: machdep.c
Log Message:
Make kernels w/o ACPICA compile. (Same "fix" as Martin made to i386...)
cvs: ----------------------------------------------------------------------
To generate a diff of this commit:
cvs rdiff -u -r1.236 -r1.237 src/sys/arch/amd64/amd64/machdep.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/amd64/amd64/machdep.c
diff -u src/sys/arch/amd64/amd64/machdep.c:1.236 src/sys/arch/amd64/amd64/machdep.c:1.237
--- src/sys/arch/amd64/amd64/machdep.c:1.236 Sun Dec 11 08:31:53 2016
+++ src/sys/arch/amd64/amd64/machdep.c Mon Dec 12 02:51:24 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.236 2016/12/11 08:31:53 maxv Exp $ */
+/* $NetBSD: machdep.c,v 1.237 2016/12/12 02:51:24 pgoyette Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998, 2000, 2006, 2007, 2008, 2011
@@ -111,7 +111,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.236 2016/12/11 08:31:53 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.237 2016/12/12 02:51:24 pgoyette Exp $");
/* #define XENDEBUG_LOW */
@@ -207,6 +207,8 @@ __KERNEL_RCSID(0, "$NetBSD: machdep.c,v
#include <dev/acpi/acpivar.h>
#define ACPI_MACHDEP_PRIVATE
#include <machine/acpi_machdep.h>
+#else
+#include <machine/i82489var.h>
#endif
#include "isa.h"