svn commit: r343533 - in head/sys/dev/usb: . quirk

Oleksandr Tymoshenko gonzo at FreeBSD.org
Mon Jan 28 20:22:18 UTC 2019


Author: gonzo
Date: Mon Jan 28 20:22:17 2019
New Revision: 343533
URL: https://svnweb.freebsd.org/changeset/base/343533

Log:
  [usb] Add UQ_KBD_BOOTPROTO quirk for Corsair K68 keyboard
  
  PR:		222114
  Submitted by:	Zane C. Bowers-Hadley <vvelox at vvelox.net>
  MFC after:	1 week

Modified:
  head/sys/dev/usb/quirk/usb_quirk.c
  head/sys/dev/usb/usbdevs

Modified: head/sys/dev/usb/quirk/usb_quirk.c
==============================================================================
--- head/sys/dev/usb/quirk/usb_quirk.c	Mon Jan 28 19:54:58 2019	(r343532)
+++ head/sys/dev/usb/quirk/usb_quirk.c	Mon Jan 28 20:22:17 2019	(r343533)
@@ -165,6 +165,8 @@ static struct usb_quirk_entry usb_quirks[USB_DEV_QUIRK
 	USB_QUIRK(MICROSOFT, WLINTELLIMOUSE, 0x0000, 0xffff, UQ_MS_LEADING_BYTE),
 	/* Quirk for Corsair Vengeance K60 keyboard */
 	USB_QUIRK(CORSAIR, K60, 0x0000, 0xffff, UQ_KBD_BOOTPROTO),
+	/* Quirk for Corsair Gaming K68 keyboard */
+	USB_QUIRK(CORSAIR, K68, 0x0000, 0xffff, UQ_KBD_BOOTPROTO),
 	/* Quirk for Corsair Vengeance K70 keyboard */
 	USB_QUIRK(CORSAIR, K70, 0x0000, 0xffff, UQ_KBD_BOOTPROTO),
 	/* Quirk for Corsair K70 RGB keyboard */

Modified: head/sys/dev/usb/usbdevs
==============================================================================
--- head/sys/dev/usb/usbdevs	Mon Jan 28 19:54:58 2019	(r343532)
+++ head/sys/dev/usb/usbdevs	Mon Jan 28 20:22:17 2019	(r343533)
@@ -1581,6 +1581,7 @@ product COREGA FETHER_USB_TXC	0x9601	FEther USB-TXC
 
 /* Corsair products */
 product CORSAIR K60		0x0a60	Corsair Vengeance K60 keyboard
+product CORSAIR K68		0x1b3f	Corsair Gaming K68 keyboard
 product CORSAIR K70		0x1b09	Corsair Vengeance K70 keyboard
 product CORSAIR K70_RGB		0x1b13	Corsair K70 RGB Keyboard
 product CORSAIR STRAFE		0x1b15	Corsair STRAFE Gaming keyboard


More information about the svn-src-all mailing list