diff options
author | Andy Walls <awalls@radix.net> | 2008-08-30 15:03:44 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-12 07:36:58 -0400 |
commit | b1526421eac9a912b2cda7e147f1da2aa31be278 (patch) | |
tree | 5c21474d865bd43dc00514f0a55a84bdf05ba440 /drivers/media/video/cx18/cx18-queue.c | |
parent | 4519064c1c7ccdd319d26181bdd12ee2df6e336e (diff) |
V4L/DVB (8913): cx18: Create cx18_ specific wrappers for all pci mmio accessesors.
cx18: Create cx18_ specific wrappers for all pci mmio accessesors. This is a
first step in instrumenting all CX23418 PCI bus IO, to debug problems with
accessing the CX23418's PCI memory mapped IO.
Signed-off-by: Andy Walls <awalls@radix.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx18/cx18-queue.c')
-rw-r--r-- | drivers/media/video/cx18/cx18-queue.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/media/video/cx18/cx18-queue.c b/drivers/media/video/cx18/cx18-queue.c index a33ba04a268..48976833e23 100644 --- a/drivers/media/video/cx18/cx18-queue.c +++ b/drivers/media/video/cx18/cx18-queue.c | |||
@@ -170,6 +170,7 @@ int cx18_stream_alloc(struct cx18_stream *s) | |||
170 | } | 170 | } |
171 | buf->id = cx->buffer_id++; | 171 | buf->id = cx->buffer_id++; |
172 | INIT_LIST_HEAD(&buf->list); | 172 | INIT_LIST_HEAD(&buf->list); |
173 | /* FIXME - check for mmio */ | ||
173 | buf->dma_handle = pci_map_single(s->cx->dev, | 174 | buf->dma_handle = pci_map_single(s->cx->dev, |
174 | buf->buf, s->buf_size, s->dma); | 175 | buf->buf, s->buf_size, s->dma); |
175 | cx18_buf_sync_for_cpu(s, buf); | 176 | cx18_buf_sync_for_cpu(s, buf); |
@@ -193,6 +194,7 @@ void cx18_stream_free(struct cx18_stream *s) | |||
193 | 194 | ||
194 | /* empty q_free */ | 195 | /* empty q_free */ |
195 | while ((buf = cx18_dequeue(s, &s->q_free))) { | 196 | while ((buf = cx18_dequeue(s, &s->q_free))) { |
197 | /* FIXME - check for mmio */ | ||
196 | pci_unmap_single(s->cx->dev, buf->dma_handle, | 198 | pci_unmap_single(s->cx->dev, buf->dma_handle, |
197 | s->buf_size, s->dma); | 199 | s->buf_size, s->dma); |
198 | kfree(buf->buf); | 200 | kfree(buf->buf); |