diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-02-27 22:09:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-02-27 22:09:48 +0000 |
commit | 50eb83de9710a41cabc74b3105c7e5441064da5b (patch) | |
tree | bf1830fddaf6eb9741312dc953388486afe55b09 /sys/dev/wscons/wskbd.c | |
parent | cc20fe38affe331ce8d51d655feb2a05f8d21593 (diff) |
kbd_reset can work on amd64 too
Diffstat (limited to 'sys/dev/wscons/wskbd.c')
-rw-r--r-- | sys/dev/wscons/wskbd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/wscons/wskbd.c b/sys/dev/wscons/wskbd.c index 6f2cffced0d..2091541d158 100644 --- a/sys/dev/wscons/wskbd.c +++ b/sys/dev/wscons/wskbd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wskbd.c,v 1.37 2003/09/23 16:51:12 millert Exp $ */ +/* $OpenBSD: wskbd.c,v 1.38 2004/02/27 22:09:47 deraadt Exp $ */ /* $NetBSD: wskbd.c,v 1.38 2000/03/23 07:01:47 thorpej Exp $ */ /* @@ -1429,7 +1429,7 @@ internal_command(sc, type, ksym, ksym2) if (sc->sc_displaydv != NULL) wsdisplay_reset(sc->sc_displaydv, WSDISPLAY_RESETCLOSE); return (1); -#ifdef __i386__ +#if defined(__i386__) || defined(__amd64__) case KS_Cmd_KbdReset: if (kbd_reset == 1) { kbd_reset = 0; |