diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2008-08-11 05:37:02 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2008-08-11 05:37:02 +0000 |
commit | 44fab68a9c993afb3ef1a9e1aef479182af58d62 (patch) | |
tree | 3cef25c48e33e7eedb77bd1d1e584885de1f5259 /sys/dev/usb/usb_quirks.c | |
parent | be38412e49d78c13c55bcd0a1f1b3c1959bc4dae (diff) |
Since we have ehci(4) isoc support now, don't demote USB2 uvideo(4)
devices to USB1, instead let them attach to ehci(4).
This may break a couple of the devices for the moment, but it's the way
we have to go finally.
Diffstat (limited to 'sys/dev/usb/usb_quirks.c')
-rw-r--r-- | sys/dev/usb/usb_quirks.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/usb/usb_quirks.c b/sys/dev/usb/usb_quirks.c index 39c2068ab53..2d8cd40d153 100644 --- a/sys/dev/usb/usb_quirks.c +++ b/sys/dev/usb/usb_quirks.c @@ -1,4 +1,4 @@ -/* $OpenBSD: usb_quirks.c,v 1.44 2008/07/22 16:24:40 mglocker Exp $ */ +/* $OpenBSD: usb_quirks.c,v 1.45 2008/08/11 05:37:01 mglocker Exp $ */ /* $NetBSD: usb_quirks.c,v 1.45 2003/05/10 17:47:14 hamajima Exp $ */ /* $FreeBSD: src/sys/dev/usb/usb_quirks.c,v 1.30 2003/01/02 04:15:55 imp Exp $ */ @@ -149,9 +149,6 @@ const struct usbd_quirk_entry { { USB_VENDOR_CYPRESS, USB_PRODUCT_CYPRESS_SISPM, ANY, { UQ_BAD_HID }}, { USB_VENDOR_CYPRESS, USB_PRODUCT_CYPRESS_SISPM_FLASH, ANY, { UQ_BAD_HID }}, -/* devices which are UVC compatible (uvideo) but don't set UDCLASS_VIDEO */ -{ USB_VENDOR_LOGITECH, USB_PRODUCT_LOGITECH_QUICKCAMOEM_1, - ANY, { UQ_EHCI_NEEDTO_DISOWN }}, { 0, 0, 0, { 0 } } }; @@ -162,7 +159,6 @@ const struct usbd_dev_quirk_entry { u_int8_t bDeviceProtocol; struct usbd_quirks quirks; } usb_dev_quirks[] = { - { UDCLASS_VIDEO, bANY, bANY, { UQ_EHCI_NEEDTO_DISOWN }}, { 0, 0, 0, { 0 } } }; |