diff options
author | Andy Walls <awalls@radix.net> | 2008-11-27 22:04:21 -0500 |
---|---|---|
committer | Andy Walls <awalls@radix.net> | 2008-11-27 22:04:21 -0500 |
commit | da0e5a7cc6dc76cf99879f3ee26a2256c67e4cde (patch) | |
tree | ca5d9d473a23457763992d05509da26093a67bbf /linux/drivers/media/video/cx18/cx18-driver.h | |
parent | a015d228d3c58d1377600c5a06914a06e4e6be36 (diff) | |
download | mediapointer-dvb-s2-da0e5a7cc6dc76cf99879f3ee26a2256c67e4cde.tar.gz mediapointer-dvb-s2-da0e5a7cc6dc76cf99879f3ee26a2256c67e4cde.tar.bz2 |
cx18: Eliminate q_io from stream buffer handling
From: Andy Walls <awalls@radix.net>
Eliminate q_io from stream buffer handling in anticipation of upcoming
changes in buffer handling. q_io was a holdover from ivtv and it's function
in cx18 was trivial and not necessary. We just push things back onto the
front of q_full now, instead of maintaining a 1 buffer q_io queue.
Priority: normal
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 | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx18/cx18-driver.h b/linux/drivers/media/video/cx18/cx18-driver.h index 94c196a91..f88d82348 100644 --- a/linux/drivers/media/video/cx18/cx18-driver.h +++ b/linux/drivers/media/video/cx18/cx18-driver.h @@ -290,7 +290,6 @@ struct cx18_stream { /* Buffer Queues */ struct cx18_queue q_free; /* free buffers */ struct cx18_queue q_full; /* full buffers */ - struct cx18_queue q_io; /* waiting for I/O */ /* DVB / Digital Transport */ struct cx18_dvb dvb; |