Module Name: src
Committed By: maya
Date: Sun Nov 11 00:06:48 UTC 2018
Modified Files:
src/lib/libnvmm: libnvmm_x86.c
Log Message:
Add missing include for struct nvmm_x64_state
(Pointed out by the clang build)
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/libnvmm/libnvmm_x86.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libnvmm/libnvmm_x86.c
diff -u src/lib/libnvmm/libnvmm_x86.c:1.1 src/lib/libnvmm/libnvmm_x86.c:1.2
--- src/lib/libnvmm/libnvmm_x86.c:1.1 Sat Nov 10 09:28:56 2018
+++ src/lib/libnvmm/libnvmm_x86.c Sun Nov 11 00:06:48 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: libnvmm_x86.c,v 1.1 2018/11/10 09:28:56 maxv Exp $ */
+/* $NetBSD: libnvmm_x86.c,v 1.2 2018/11/11 00:06:48 maya Exp $ */
/*
* Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -42,6 +42,7 @@
#include <machine/vmparam.h>
#include <machine/pte.h>
#include <machine/psl.h>
+#include <dev/nvmm/x86/nvmm_x86.h>
#include "nvmm.h"