Module Name: src
Committed By: nonaka
Date: Fri May 31 03:10:31 UTC 2019
Modified Files:
src/sys/arch/x86/x86: consinit.c
Log Message:
Back out r1.30 change.
> tuck in include inside ifdef, from Ryosuke Moro
It was caused by the reporter's local change.
To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/sys/arch/x86/x86/consinit.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/x86/x86/consinit.c
diff -u src/sys/arch/x86/x86/consinit.c:1.30 src/sys/arch/x86/x86/consinit.c:1.31
--- src/sys/arch/x86/x86/consinit.c:1.30 Sun May 26 00:30:35 2019
+++ src/sys/arch/x86/x86/consinit.c Fri May 31 03:10:31 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: consinit.c,v 1.30 2019/05/26 00:30:35 christos Exp $ */
+/* $NetBSD: consinit.c,v 1.31 2019/05/31 03:10:31 nonaka Exp $ */
/*
* Copyright (c) 1998
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: consinit.c,v 1.30 2019/05/26 00:30:35 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: consinit.c,v 1.31 2019/05/31 03:10:31 nonaka Exp $");
#include "opt_kgdb.h"
#include "opt_puc.h"
@@ -92,8 +92,8 @@ __KERNEL_RCSID(0, "$NetBSD: consinit.c,v
#endif
#ifndef XEN
-#if NHVKBD > 0
#include "hvkbd.h"
+#if NHVKBD > 0
#include <dev/hyperv/hvkbdvar.h>
#endif
#endif