summaryrefslogtreecommitdiff
path: root/sys/dev/usb
diff options
context:
space:
mode:
authorMarcus Glocker <mglocker@cvs.openbsd.org>2008-12-22 09:45:47 +0000
committerMarcus Glocker <mglocker@cvs.openbsd.org>2008-12-22 09:45:47 +0000
commitecd192fa0d8a590617187746c92d094e74efcc58 (patch)
tree1db0c70ff75ae485102596ad52f8652169bc693b /sys/dev/usb
parentb494a2469d311cf792fa04b3bf00e0cda020f828 (diff)
Sort quirk device list and fix some comments there.
Diffstat (limited to 'sys/dev/usb')
-rw-r--r--sys/dev/usb/uvideo.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/sys/dev/usb/uvideo.c b/sys/dev/usb/uvideo.c
index f122c0a1f75..2ae9ddf3c75 100644
--- a/sys/dev/usb/uvideo.c
+++ b/sys/dev/usb/uvideo.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uvideo.c,v 1.111 2008/12/22 09:34:46 mglocker Exp $ */
+/* $OpenBSD: uvideo.c,v 1.112 2008/12/22 09:45:46 mglocker Exp $ */
/*
* Copyright (c) 2008 Robert Nagy <robert@openbsd.org>
@@ -251,29 +251,31 @@ struct uvideo_devs {
int flags;
} uvideo_devs[] = {
{
+ /* Needs firmware */
{ USB_VENDOR_RICOH, USB_PRODUCT_RICOH_VGPVCC7 },
"r5u87x-05ca-183a.fw",
uvideo_ucode_loader_ricoh,
0
},
- { /* Incorrectly reports as UICLASS_VENDOR */
- { USB_VENDOR_LOGITECH, USB_PRODUCT_LOGITECH_QUICKCAMOEM_1 },
- NULL,
- NULL,
- 0
- },
{
- /* Has a own streaming header format */
+ /* Needs firmware */
{ USB_VENDOR_APPLE, USB_PRODUCT_APPLE_BLUETOOTH },
"isight.fw",
uvideo_ucode_loader_apple_isight,
0
},
{
+ /* Has a non-standard streaming header protocol */
{ USB_VENDOR_APPLE, USB_PRODUCT_APPLE_ISIGHT_1},
NULL,
NULL,
UVIDEO_FLAG_ISIGHT_STREAM_HEADER
+ },
+ { /* Incorrectly reports as bInterfaceClass=UICLASS_VENDOR */
+ { USB_VENDOR_LOGITECH, USB_PRODUCT_LOGITECH_QUICKCAMOEM_1 },
+ NULL,
+ NULL,
+ 0
}
};
#define uvideo_lookup(v, p) \