Module Name: src Committed By: christos Date: Sun May 26 00:30:35 UTC 2019
Modified Files: src/sys/arch/x86/x86: consinit.c Log Message: tuck in include inside ifdef, from Ryosuke Moro To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 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.29 src/sys/arch/x86/x86/consinit.c:1.30 --- src/sys/arch/x86/x86/consinit.c:1.29 Fri May 24 10:28:48 2019 +++ src/sys/arch/x86/x86/consinit.c Sat May 25 20:30:35 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: consinit.c,v 1.29 2019/05/24 14:28:48 nonaka Exp $ */ +/* $NetBSD: consinit.c,v 1.30 2019/05/26 00:30:35 christos Exp $ */ /* * Copyright (c) 1998 @@ -27,7 +27,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: consinit.c,v 1.29 2019/05/24 14:28:48 nonaka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: consinit.c,v 1.30 2019/05/26 00:30:35 christos Exp $"); #include "opt_kgdb.h" #include "opt_puc.h" @@ -92,8 +92,8 @@ __KERNEL_RCSID(0, "$NetBSD: consinit.c,v #endif #ifndef XEN -#include "hvkbd.h" #if NHVKBD > 0 +#include "hvkbd.h" #include <dev/hyperv/hvkbdvar.h> #endif #endif