summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1994-03-02 06:46:11 +0000
committermycroft <mycroft@NetBSD.org>1994-03-02 06:46:11 +0000
commit2292eadf37e05fa4559043ff329c91a0c6263d14 (patch)
tree6d8f78d1eab0ad67368052081ba0238542e64165 /sys/dev/ic
parentab1474a681fc21a700d850b1e14d96f1b6933cd7 (diff)
Set the keyboard to scancode table 1 rather than having the 8042 convert.
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/i8042.h4
-rw-r--r--sys/dev/ic/i8042reg.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ic/i8042.h b/sys/dev/ic/i8042.h
index 480f711ca4b..6c46103844b 100644
--- a/sys/dev/ic/i8042.h
+++ b/sys/dev/ic/i8042.h
@@ -1,5 +1,5 @@
/*
- * $Id: i8042.h,v 1.2 1993/05/22 08:01:55 cgd Exp $
+ * $Id: i8042.h,v 1.3 1994/03/02 06:46:17 mycroft Exp $
*/
#define KBSTATP 0x64 /* kbd controller status port (I) */
@@ -24,4 +24,4 @@
#define KC8_IGNSEC 0x08 /* ignore security lock */
#define KC8_CPU 0x04 /* exit from protected mode reset */
#define KC8_IEN 0x01 /* enable interrupt */
-#define CMDBYTE (KC8_TRANS|KC8_IGNSEC|KC8_CPU|KC8_IEN)
+#define CMDBYTE (KC8_IGNSEC|KC8_CPU|KC8_IEN)
diff --git a/sys/dev/ic/i8042reg.h b/sys/dev/ic/i8042reg.h
index f4e2e047457..6488d811d13 100644
--- a/sys/dev/ic/i8042reg.h
+++ b/sys/dev/ic/i8042reg.h
@@ -1,5 +1,5 @@
/*
- * $Id: i8042reg.h,v 1.2 1993/05/22 08:01:55 cgd Exp $
+ * $Id: i8042reg.h,v 1.3 1994/03/02 06:46:17 mycroft Exp $
*/
#define KBSTATP 0x64 /* kbd controller status port (I) */
@@ -24,4 +24,4 @@
#define KC8_IGNSEC 0x08 /* ignore security lock */
#define KC8_CPU 0x04 /* exit from protected mode reset */
#define KC8_IEN 0x01 /* enable interrupt */
-#define CMDBYTE (KC8_TRANS|KC8_IGNSEC|KC8_CPU|KC8_IEN)
+#define CMDBYTE (KC8_IGNSEC|KC8_CPU|KC8_IEN)