diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-02-04 17:28:18 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-02-04 17:28:18 +0000 |
commit | 556a7232ccc67b634178e70240925c3cebe6ba7d (patch) | |
tree | 4c9911213baff3808ba9eb61fae307a0425aff7c /sys/arch/i386 | |
parent | dda52756dc38adc836a931454a6d6b3cfcac978b (diff) |
#endif in the wrong place, causing certain kernel configs to not compile;
brian@Awfulhak.org
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 6 |
1 files 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 |