Fix kbdmux(4) issue with backslash/underscore key not working on

Japanese 106/109 keyboard.

PR:		kern/112214, kern/99090
Submitted by:	TOMITA Yoshinori, TAKAHASHI Yoshihiro
Approved by:	re (hrs)
MFC after:	3 days
This commit is contained in:
Maksim Yevmenkin 2007-07-11 18:57:15 +00:00
parent 57899e0212
commit 190fa66b39
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=171373

View File

@ -786,6 +786,9 @@ kbdmux_read_char(keyboard_t *kbd, int wait)
case 0x63: /* wake key */
keycode = 0x6f;
break;
case 0x64: /* [JP106USB] backslash, underscore */
keycode = 0x73;
break;
default: /* ignore everything else */
goto next_code;
}