svn commit: r291145 - head/usr.sbin/bluetooth/bthidd

Hans Petter Selasky hselasky at FreeBSD.org
Sat Nov 21 21:14:17 UTC 2015


Author: hselasky
Date: Sat Nov 21 21:14:16 2015
New Revision: 291145
URL: https://svnweb.freebsd.org/changeset/base/291145

Log:
  Fix scancodes for Kana and Eisu keys.
  
  PR:		204709
  Submitted by:	naito.yuichiro at gmail.com
  MFC after:	3 days

Modified:
  head/usr.sbin/bluetooth/bthidd/kbd.c

Modified: head/usr.sbin/bluetooth/bthidd/kbd.c
==============================================================================
--- head/usr.sbin/bluetooth/bthidd/kbd.c	Sat Nov 21 21:01:00 2015	(r291144)
+++ head/usr.sbin/bluetooth/bthidd/kbd.c	Sat Nov 21 21:14:16 2015	(r291145)
@@ -226,8 +226,8 @@ static int32_t const	x[] =
 /* Keyboard Int'l 7             8D */ -1,   /* Unassigned */
 /* Keyboard Int'l 8             8E */ -1,   /* Unassigned */
 /* Keyboard Int'l 9             8F */ -1,   /* Unassigned */
-/* Keyboard Lang 1              90 */ 0x71, /* eisu */
-/* Keyboard Lang 2              91 */ 0x72, /* kana */
+/* Keyboard Lang 1              90 */ 0x71, /* Kana */
+/* Keyboard Lang 2              91 */ 0x72, /* Eisu */
 /* Keyboard Lang 3              92 */ 0x78, /* F8 */
 /* Keyboard Lang 4              93 */ 0x77, /* F7 */
 /* Keyboard Lang 5              94 */ 0x76, /* F6 */


More information about the svn-src-head mailing list