Module Name: src
Committed By: nia
Date: Thu Oct 29 09:08:35 UTC 2020
Modified Files:
src/sys/dev/wscons: wsconsio.h
Log Message:
wscons(4): WSKBD_TYPE_PC_AT is automatically translated to
WSKBD_TYPE_PC_XT in modern kernels
To generate a diff of this commit:
cvs rdiff -u -r1.123 -r1.124 src/sys/dev/wscons/wsconsio.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/wscons/wsconsio.h
diff -u src/sys/dev/wscons/wsconsio.h:1.123 src/sys/dev/wscons/wsconsio.h:1.124
--- src/sys/dev/wscons/wsconsio.h:1.123 Fri May 24 14:28:48 2019
+++ src/sys/dev/wscons/wsconsio.h Thu Oct 29 09:08:35 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: wsconsio.h,v 1.123 2019/05/24 14:28:48 nonaka Exp $ */
+/* $NetBSD: wsconsio.h,v 1.124 2020/10/29 09:08:35 nia Exp $ */
/*
* Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
@@ -87,7 +87,7 @@ struct wscons_event {
#define WSKBD_TYPE_LK201 1 /* lk-201 */
#define WSKBD_TYPE_LK401 2 /* lk-401 */
#define WSKBD_TYPE_PC_XT 3 /* PC-ish, XT scancode */
-#define WSKBD_TYPE_PC_AT 4 /* PC-ish, AT scancode */
+#define WSKBD_TYPE_PC_AT 4 /* PC-ish, AT scancode, not used by modern kernels */
#define WSKBD_TYPE_USB 5 /* USB, XT scancode */
#define WSKBD_TYPE_NEXT 6 /* NeXT keyboard */
#define WSKBD_TYPE_HPC_KBD 7 /* HPC bultin keyboard */