diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-04-18 17:12:21 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-04-18 17:12:21 +0000 |
commit | a6a904544a03430da971edb0c6cb2fc574348d79 (patch) | |
tree | d8e8eb59ac4073e51f834df2e7997dc5fe0c68e3 /sys/arch/i386/isa/pccons.c | |
parent | a6a715c7a6fe45922172c2af5ada0becdc68d9a5 (diff) |
Merge of NetBSD 960317
Diffstat (limited to 'sys/arch/i386/isa/pccons.c')
-rw-r--r-- | sys/arch/i386/isa/pccons.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/sys/arch/i386/isa/pccons.c b/sys/arch/i386/isa/pccons.c index aefc27ac224..8ce645e44e8 100644 --- a/sys/arch/i386/isa/pccons.c +++ b/sys/arch/i386/isa/pccons.c @@ -1,5 +1,5 @@ -/* $OpenBSD: pccons.c,v 1.6 1996/03/29 12:05:39 mickey Exp $ */ -/* $NetBSD: pccons.c,v 1.91 1995/12/24 02:30:25 mycroft Exp $ */ +/* $OpenBSD: pccons.c,v 1.7 1996/04/18 17:12:18 niklas Exp $ */ +/* $NetBSD: pccons.c,v 1.92 1996/03/16 06:08:46 thorpej Exp $ */ /*- * Copyright (c) 1993, 1994, 1995 Charles Hannum. All rights reserved. @@ -478,6 +478,14 @@ pcattach(parent, self, aux) sc->sc_ih = isa_intr_establish(ia->ia_irq, IST_EDGE, IPL_TTY, pcintr, sc, sc->sc_dev.dv_xname); + + /* + * Look for children of the keyboard controller. + * XXX Really should decouple keyboard controller + * from the console code. + */ + while (config_found(self, NULL, NULL)) + /* will break when no more children */ ; } int |