diff options
author | 2008-11-09 20:14:06 +0000 | |
---|---|---|
committer | 2008-11-09 20:14:06 +0000 | |
commit | 94e1c81b73ae83c03218d59e55266fb3de29fcf1 (patch) | |
tree | 0ebe382178d2866bae7109e14b48bcd29c6978e7 /sys/dev/usb/uvideo.h | |
parent | typos; ok ratchov@ jmc@ (diff) | |
download | wireguard-openbsd-94e1c81b73ae83c03218d59e55266fb3de29fcf1.tar.xz wireguard-openbsd-94e1c81b73ae83c03218d59e55266fb3de29fcf1.zip |
Add BULK xfer support.
Thanks to Carlos Valiente for donating an EeePC 701 where this has been
developed and tested.
Diffstat (limited to 'sys/dev/usb/uvideo.h')
-rw-r--r-- | sys/dev/usb/uvideo.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/usb/uvideo.h b/sys/dev/usb/uvideo.h index ef9a133aecd..b8b1e1cef61 100644 --- a/sys/dev/usb/uvideo.h +++ b/sys/dev/usb/uvideo.h @@ -1,4 +1,4 @@ -/* $OpenBSD: uvideo.h,v 1.31 2008/08/27 17:31:48 mglocker Exp $ */ +/* $OpenBSD: uvideo.h,v 1.32 2008/11/09 20:14:06 mglocker Exp $ */ /* * Copyright (c) 2007 Robert Nagy <robert@openbsd.org> @@ -431,6 +431,8 @@ struct uvideo_vs_iface { int curalt; uint32_t max_packet_size; int iface; + int bulk_endpoint; + int bulk_running; }; struct uvideo_frame_buffer { |