]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
V4L/DVB (6603): V4L: videobuf: convert streaming and reading to bitfields
authorBrandon Philips <brandon@ifup.org>
Tue, 6 Nov 2007 23:23:08 +0000 (20:23 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Fri, 25 Jan 2008 21:02:11 +0000 (19:02 -0200)
Signed-off-by: Brandon Philips <bphilips@suse.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
include/media/videobuf-core.h

index 567dfe22c07fd973bbe0b46d9a10b79212e4776a..7aa7a7b64c1b7b9b22588b06ec750c7d8527a24b 100644 (file)
@@ -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;