summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMarcus Glocker <mglocker@cvs.openbsd.org>2009-02-27 06:00:32 +0000
committerMarcus Glocker <mglocker@cvs.openbsd.org>2009-02-27 06:00:32 +0000
commit93888d28911ab732fe3745512c72f3acee9fb5a2 (patch)
tree8b16f4650f665f02123cae48e1efae225bde2f1c /sys
parent184986620e7f6a2431429715eb2a7b986027ab19 (diff)
0x3 is not really a good number for bit flags. Should fix the Logitech
QuickCam OEM attachment finally. OK deraadt@
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/usb/uvideo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/uvideo.c b/sys/dev/usb/uvideo.c
index 0f74138b112..d6190d0317e 100644
--- a/sys/dev/usb/uvideo.c
+++ b/sys/dev/usb/uvideo.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uvideo.c,v 1.120 2009/02/21 08:18:13 mglocker Exp $ */
+/* $OpenBSD: uvideo.c,v 1.121 2009/02/27 06:00:31 mglocker Exp $ */
/*
* Copyright (c) 2008 Robert Nagy <robert@openbsd.org>
@@ -244,7 +244,7 @@ struct video_hw_if uvideo_hw_if = {
*/
#define UVIDEO_FLAG_ISIGHT_STREAM_HEADER 0x1
#define UVIDEO_FLAG_REATTACH 0x2
-#define UVIDEO_FLAG_VENDOR_CLASS 0x3
+#define UVIDEO_FLAG_VENDOR_CLASS 0x4
struct uvideo_devs {
struct usb_devno uv_dev;
char *ucode_name;