| Submitter | Jeremy Kerr |
|---|---|
| Date | June 22, 2011, 7:28 a.m. |
| Message ID | <1308727720.8526.617194662030.1.gpush@pororo> |
| Download | mbox | patch |
| Permalink | /patch/101399/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/drivers/media/video/cx23885/cx23885-core.c b/drivers/media/video/cx23885/cx23885-core.c index 7e897de..b3568df 100644 --- a/drivers/media/video/cx23885/cx23885-core.c +++ b/drivers/media/video/cx23885/cx23885-core.c @@ -1143,7 +1143,7 @@ void cx23885_free_buffer(struct videobuf_queue *q, struct cx23885_buffer *buf) BUG_ON(in_interrupt()); videobuf_waiton(&buf->vb, 0, 0); - videobuf_dma_unmap(q->dev, dma); + videobuf_dma_unmap(q, dma); videobuf_dma_free(dma); btcx_riscmem_free(to_pci_dev(q->dev), &buf->risc); buf->vb.state = VIDEOBUF_NEEDS_INIT;
BugLink: https://bugs.launchpad.net/800527 The commit bcbfc24 introduced a change to cx2388-core.c that is incorrect - the videobuf_dma_unmap function accepts a struct videobuf *, and bcbfc24 changed this to a struct device *. [The videobuf_dma_unmap API has been changed, but that new API is not in maverick] This change reverts the call to use the correct struct videobuf *. Signed-off-by: Jeremy Kerr <jeremy.kerr@canonical.com> --- drivers/media/video/cx23885/cx23885-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)