Module Name:    src
Committed By:   jakllsch
Date:           Wed Jan 30 19:57:48 UTC 2019

Modified Files:
        src/sys/dev/usb: usb_quirks.c

Log Message:
add the no-uhidev quirk for all X-Rite and GretagMacbeth devices


To generate a diff of this commit:
cvs rdiff -u -r1.90 -r1.91 src/sys/dev/usb/usb_quirks.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/usb/usb_quirks.c
diff -u src/sys/dev/usb/usb_quirks.c:1.90 src/sys/dev/usb/usb_quirks.c:1.91
--- src/sys/dev/usb/usb_quirks.c:1.90	Thu Nov 15 02:35:23 2018
+++ src/sys/dev/usb/usb_quirks.c	Wed Jan 30 19:57:48 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: usb_quirks.c,v 1.90 2018/11/15 02:35:23 manu Exp $	*/
+/*	$NetBSD: usb_quirks.c,v 1.91 2019/01/30 19:57:48 jakllsch Exp $	*/
 /*	$FreeBSD: src/sys/dev/usb/usb_quirks.c,v 1.30 2003/01/02 04:15:55 imp Exp $	*/
 
 /*
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: usb_quirks.c,v 1.90 2018/11/15 02:35:23 manu Exp $");
+__KERNEL_RCSID(0, "$NetBSD: usb_quirks.c,v 1.91 2019/01/30 19:57:48 jakllsch Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -186,6 +186,8 @@ Static const struct usbd_quirk_entry {
 	{ UQ_HID_IGNORE, NULL }},
  { USB_VENDOR_CYBERPOWER,	USB_PRODUCT_CYBERPOWER_UPS,		ANY,
 	{ UQ_HID_IGNORE, NULL }},
+ { USB_VENDOR_GRETAGMACBETH,	ANY,					ANY,
+	{ UQ_HID_IGNORE, NULL }},
  { USB_VENDOR_MGE,		USB_PRODUCT_MGE_UPS1,			ANY,
 	{ UQ_HID_IGNORE, NULL }},
  { USB_VENDOR_MGE,		USB_PRODUCT_MGE_UPS2,			ANY,
@@ -202,6 +204,8 @@ Static const struct usbd_quirk_entry {
 	{ UQ_HID_IGNORE, NULL }},
  { USB_VENDOR_TI,		USB_PRODUCT_TI_MSP430,			ANY,
 	{ UQ_HID_IGNORE, NULL }},
+ { USB_VENDOR_XRITE,		ANY,					ANY,
+	{ UQ_HID_IGNORE, NULL }},
  { USB_VENDOR_KYE,		USB_PRODUCT_KYE_NICHE,			0x100,
 	{ UQ_NO_SET_PROTO, NULL }},
  { USB_VENDOR_INSIDEOUT,	USB_PRODUCT_INSIDEOUT_EDGEPORT4,	0x094,

Reply via email to