aboutsummaryrefslogtreecommitdiff
path: root/include/media/videobuf-core.h
diff options
context:
space:
mode:
authorBrandon Philips <brandon@ifup.org>2007-11-06 20:23:08 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-01-25 19:02:11 -0200
commitd6964aa8d4a418d69da1652121940fabc6b5d591 (patch)
treec01e56513d2b32c5f7fd2359b975266c10d80a1e /include/media/videobuf-core.h
parent0fc0686e64d21a6abded96af2b1a895dfa8b2530 (diff)
V4L/DVB (6603): V4L: videobuf: convert streaming and reading to bitfields
Signed-off-by: Brandon Philips <bphilips@suse.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'include/media/videobuf-core.h')
-rw-r--r--include/media/videobuf-core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/media/videobuf-core.h b/include/media/videobuf-core.h
index 567dfe22c07..7aa7a7b64c1 100644
--- a/include/media/videobuf-core.h
+++ b/include/media/videobuf-core.h
@@ -162,12 +162,12 @@ struct videobuf_queue {
struct videobuf_queue_ops *ops;
struct videobuf_qtype_ops *int_ops;
+ unsigned int streaming:1;
+ unsigned int reading:1;
/* capture via mmap() + ioctl(QBUF/DQBUF) */
- unsigned int streaming;
struct list_head stream;
/* capture via read() */
- unsigned int reading;
unsigned int read_off;
struct videobuf_buffer *read_buf;