diff options
author | 2009-02-27 06:00:31 +0000 | |
---|---|---|
committer | 2009-02-27 06:00:31 +0000 | |
commit | 6da6815cf3ecc98cb5d51c1d85d3c5698d30f5e8 (patch) | |
tree | 15e010789c4db3149ac277ba34d8599ad79475b3 | |
parent | Rework nmi handling to handle ``complex'' NMI faster, and return as fast as (diff) | |
download | wireguard-openbsd-6da6815cf3ecc98cb5d51c1d85d3c5698d30f5e8.tar.xz wireguard-openbsd-6da6815cf3ecc98cb5d51c1d85d3c5698d30f5e8.zip |
0x3 is not really a good number for bit flags. Should fix the Logitech
QuickCam OEM attachment finally.
OK deraadt@
-rw-r--r-- | sys/dev/usb/uvideo.c | 4 |
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; |