diff options
author | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2010-09-29 09:33:27 +0000 |
---|---|---|
committer | Jacob Meuser <jakemsr@cvs.openbsd.org> | 2010-09-29 09:33:27 +0000 |
commit | d9532f628b852e5606d87dc544c6a04466ad3696 (patch) | |
tree | f54c66cd85da4611c24ef071112490beac723c10 /sys/dev/usb/uvideo.h | |
parent | db61ceed0b312cc093d0a6fe09d3425f34300db0 (diff) |
back out support for variable sized processing unit controls until
I can figure out why it causes boot hangs with some Sonix camera
Diffstat (limited to 'sys/dev/usb/uvideo.h')
-rw-r--r-- | sys/dev/usb/uvideo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/uvideo.h b/sys/dev/usb/uvideo.h index 5e12a702e28..d0326eab9da 100644 --- a/sys/dev/usb/uvideo.h +++ b/sys/dev/usb/uvideo.h @@ -1,4 +1,4 @@ -/* $OpenBSD: uvideo.h,v 1.47 2010/09/26 23:44:51 jakemsr Exp $ */ +/* $OpenBSD: uvideo.h,v 1.48 2010/09/29 09:33:26 jakemsr Exp $ */ /* * Copyright (c) 2007 Robert Nagy <robert@openbsd.org> @@ -217,7 +217,7 @@ struct usb_video_vc_processing_desc { uByte bSourceID; uWord wMaxMultiplier; uByte bControlSize; - uByte bmControls[255]; /* [bControlSize] */ + uWord bmControls; /* XXX must be variable size of bControlSize */ uByte iProcessing; uByte bmVideoStandards; |