diff options
author | Andy Walls <awalls@radix.net> | 2008-11-05 19:19:15 -0500 |
---|---|---|
committer | Andy Walls <awalls@radix.net> | 2008-11-05 19:19:15 -0500 |
commit | 5c9a58b88f61db125e53c96ba49bada98fe466f0 (patch) | |
tree | 7b5c7ae70fa35929370d8150550ba0387344d94f /linux/drivers/media/video/cx18/cx18-driver.h | |
parent | 94703235501e112e7496efe5bce32671e121d98f (diff) | |
download | mediapointer-dvb-s2-5c9a58b88f61db125e53c96ba49bada98fe466f0.tar.gz mediapointer-dvb-s2-5c9a58b88f61db125e53c96ba49bada98fe466f0.tar.bz2 |
cx18: Use default kernel work queue; fix streaming flag for work handler
From: Andy Walls <awalls@radix.net>
cx18: Use default kernel work queue; fix streaming flag for work handler.
Eliminate cx18 specific work queue and use the kernel default work queue.
Fixed the F_STREAMING_FLAG for the TS stream so cx18_dvb_work_handler()
can know when it is not safe to send MDLs to the firmware.
Priority: high
Signed-off-by: Andy Walls <awalls@radix.net>
Diffstat (limited to 'linux/drivers/media/video/cx18/cx18-driver.h')
-rw-r--r-- | linux/drivers/media/video/cx18/cx18-driver.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/linux/drivers/media/video/cx18/cx18-driver.h b/linux/drivers/media/video/cx18/cx18-driver.h index fe9e5bb97..04f1c624d 100644 --- a/linux/drivers/media/video/cx18/cx18-driver.h +++ b/linux/drivers/media/video/cx18/cx18-driver.h @@ -207,7 +207,6 @@ struct cx18_options { #define CX18_F_I_WORK_HANDLER_DVB 18 /* work to be done for DVB */ #define CX18_F_I_INITED 21 /* set after first open */ #define CX18_F_I_FAILED 22 /* set if first open failed */ -#define CX18_F_I_WORK_INITED 23 /* worker thread initialized */ /* These are the VBI types as they appear in the embedded VBI private packets. */ #define CX18_SLICED_TYPE_TELETEXT_B (1) @@ -435,7 +434,6 @@ struct cx18 { /* when the current DMA is finished this queue is woken up */ wait_queue_head_t dma_waitq; - struct workqueue_struct *work_queue; struct work_struct work; /* i2c */ |