From 4259bb83204c6970d2cce2a4855cccd0cafaebf8 Mon Sep 17 00:00:00 2001 From: nia Date: Thu, 29 Oct 2020 09:08:35 +0000 Subject: wscons(4): WSKBD_TYPE_PC_AT is automatically translated to WSKBD_TYPE_PC_XT in modern kernels --- sys/dev/wscons/wsconsio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/wscons/wsconsio.h b/sys/dev/wscons/wsconsio.h index 993c27ccd7b..c06d742eb77 100644 --- a/sys/dev/wscons/wsconsio.h +++ b/sys/dev/wscons/wsconsio.h @@ -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 */ -- cgit