diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2014-08-29 05:40:47 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-11-03 08:28:30 -0200 |
commit | 999b3ceb849b5b9ed25739fea2e69adef09845c7 (patch) | |
tree | b75bdc12be8f02998d4bceb460415eef6693cac3 /drivers/media/pci/cx88/cx88-blackbird.c | |
parent | eddd3263208e3e4f80665bbec9d16f02c98986e8 (diff) | |
download | blackbird-op-linux-999b3ceb849b5b9ed25739fea2e69adef09845c7.tar.gz blackbird-op-linux-999b3ceb849b5b9ed25739fea2e69adef09845c7.zip |
[media] cx88: drop cx88_free_buffer
Remove this function. This makes all vb2 queues behave the same, which
simplifies comparing the various vb2 queue op implementations.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/pci/cx88/cx88-blackbird.c')
-rw-r--r-- | drivers/media/pci/cx88/cx88-blackbird.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/cx88/cx88-blackbird.c b/drivers/media/pci/cx88/cx88-blackbird.c index 11054cd903af..b24266ec2b5d 100644 --- a/drivers/media/pci/cx88/cx88-blackbird.c +++ b/drivers/media/pci/cx88/cx88-blackbird.c @@ -667,7 +667,7 @@ static void buffer_finish(struct vb2_buffer *vb) struct cx88_buffer *buf = container_of(vb, struct cx88_buffer, vb); struct sg_table *sgt = vb2_dma_sg_plane_desc(vb, 0); - cx88_free_buffer(vb->vb2_queue, buf); + btcx_riscmem_free(dev->pci, &buf->risc); dma_unmap_sg(&dev->pci->dev, sgt->sgl, sgt->nents, DMA_FROM_DEVICE); } |