From 556a7232ccc67b634178e70240925c3cebe6ba7d Mon Sep 17 00:00:00 2001 From: Aaron Campbell Date: Sun, 4 Feb 2001 17:28:18 +0000 Subject: #endif in the wrong place, causing certain kernel configs to not compile; brian@Awfulhak.org --- sys/arch/i386/i386/machdep.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index 4848eec8e58..5e5c9d02c14 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.147 2001/01/30 00:00:31 aaron Exp $ */ +/* $OpenBSD: machdep.c,v 1.148 2001/02/04 17:28:17 aaron Exp $ */ /* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */ /*- @@ -2414,7 +2414,8 @@ consinit() dokbd: #if (NPCKBC > 0) pckbc_cnattach(I386_BUS_SPACE_IO, IO_KBD, KBCMDP, PCKBC_KBD_SLOT); -#endif /* PC | VT | VGA | PCDISPLAY */ +#endif +#endif /* PC | VGA | EGA | PCDISPLAY */ } #if (NPCKBC > 0) && (NPCKBD == 0) @@ -2434,7 +2435,6 @@ pckbc_machdep_cnattach(kbctag, kbcslot) #endif } #endif -#endif #ifdef KGDB void -- cgit v1.2.3