svn commit: r203899 - head/sys/dev/usb/quirk
Andrew Thompson
thompsa at FreeBSD.org
Sun Feb 14 19:56:05 UTC 2010
Author: thompsa
Date: Sun Feb 14 19:56:05 2010
New Revision: 203899
URL: http://svn.freebsd.org/changeset/base/203899
Log:
Add UQ_KBD_BOOTPROTO quirk needed in r203896
Modified:
head/sys/dev/usb/quirk/usb_quirk.c
head/sys/dev/usb/quirk/usb_quirk.h
Modified: head/sys/dev/usb/quirk/usb_quirk.c
==============================================================================
--- head/sys/dev/usb/quirk/usb_quirk.c Sun Feb 14 19:55:41 2010 (r203898)
+++ head/sys/dev/usb/quirk/usb_quirk.c Sun Feb 14 19:56:05 2010 (r203899)
@@ -459,6 +459,7 @@ static const char *usb_quirk_str[USB_QUI
[UQ_BUS_POWERED] = "UQ_BUS_POWERED",
[UQ_HID_IGNORE] = "UQ_HID_IGNORE",
[UQ_KBD_IGNORE] = "UQ_KBD_IGNORE",
+ [UQ_KBD_BOOTPROTO] = "UQ_KBD_BOOTPROTO",
[UQ_MS_BAD_CLASS] = "UQ_MS_BAD_CLASS",
[UQ_MS_LEADING_BYTE] = "UQ_MS_LEADING_BYTE",
[UQ_MS_REVZ] = "UQ_MS_REVZ",
Modified: head/sys/dev/usb/quirk/usb_quirk.h
==============================================================================
--- head/sys/dev/usb/quirk/usb_quirk.h Sun Feb 14 19:55:41 2010 (r203898)
+++ head/sys/dev/usb/quirk/usb_quirk.h Sun Feb 14 19:56:05 2010 (r203899)
@@ -45,6 +45,7 @@ enum { /* keep in sync with usb_quirk_st
UQ_BUS_POWERED, /* device is bus powered, despite claim */
UQ_HID_IGNORE, /* device should be ignored by hid class */
UQ_KBD_IGNORE, /* device should be ignored by kbd class */
+ UQ_KBD_BOOTPROTO, /* device should set the boot protocol */
UQ_MS_BAD_CLASS, /* doesn't identify properly */
UQ_MS_LEADING_BYTE, /* mouse sends an unknown leading byte */
UQ_MS_REVZ, /* mouse has Z-axis reversed */
More information about the svn-src-head
mailing list