diff options
author | Thomas Graichen <graichen@cvs.openbsd.org> | 1996-12-29 12:26:00 +0000 |
---|---|---|
committer | Thomas Graichen <graichen@cvs.openbsd.org> | 1996-12-29 12:26:00 +0000 |
commit | 9c685a261608b4ae7d43aa5be55b8dd0cb3cfe69 (patch) | |
tree | f5c8326e6394449b041456cff03605d1a4b015c0 /sys/arch/i386/isa | |
parent | 35e0ab4a4167e1b251b9c5c1285d5fa85cf6d2bb (diff) |
add some comments to some things we removed to get also more broken
keyboards working
Diffstat (limited to 'sys/arch/i386/isa')
-rw-r--r-- | sys/arch/i386/isa/pccons.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/arch/i386/isa/pccons.c b/sys/arch/i386/isa/pccons.c index 3b6abd3c7fd..2c53a874f8a 100644 --- a/sys/arch/i386/isa/pccons.c +++ b/sys/arch/i386/isa/pccons.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pccons.c,v 1.32 1996/12/20 07:24:49 graichen Exp $ */ +/* $OpenBSD: pccons.c,v 1.33 1996/12/29 12:25:59 graichen Exp $ */ /* $NetBSD: pccons.c,v 1.99.4.1 1996/06/04 20:03:53 cgd Exp $ */ /*- @@ -426,6 +426,10 @@ pcprobe(parent, match, aux) if (!kbd_cmd(KBC_RESET, 1)) { #ifdef DIAGNOSTIC printf("pcprobe: reset error %d\n", 1); + /* XXX - this would make some - maybe very + broken - but usable keyboards unusable + goto lose; + */ #endif } for (i = 600000; i; i--) @@ -436,6 +440,10 @@ pcprobe(parent, match, aux) if (i == 0 || inb(KBDATAP) != KBR_RSTDONE) { #ifdef DIAGNOSTIC printf("pcprobe: reset error %d\n", 2); + /* XXX - this would make some - maybe very + broken - but usable keyboards unusable + goto lose; + */ #endif } /* |