diff options
author | Pawel Osciak <pawel@osciak.com> | 2011-03-14 09:38:23 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-03-22 18:41:57 -0400 |
commit | d6db5bfe7fd6d4334a1460923ba8175f1a0ece2d (patch) | |
tree | 198384131bc7f476924cc86fd156ac8de2f94de6 /drivers | |
parent | d366d4a08a4e5e1fddc2cc820302be8e7a8143d4 (diff) |
[media] sh_mobile_ceu_camera: Do not call vb2's mem_ops directly
Use vb2_dma_contig_plane_paddr to retrieve a physical address for a plane
instead of calling an internal mem_ops callback.
Signed-off-by: Pawel Osciak <pawel@osciak.com>
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/video/sh_mobile_ceu_camera.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/media/video/sh_mobile_ceu_camera.c b/drivers/media/video/sh_mobile_ceu_camera.c index 61f37012b4f8..3fe54bf41142 100644 --- a/drivers/media/video/sh_mobile_ceu_camera.c +++ b/drivers/media/video/sh_mobile_ceu_camera.c | |||
@@ -302,9 +302,7 @@ static int sh_mobile_ceu_capture(struct sh_mobile_ceu_dev *pcdev) | |||
302 | bottom2 = CDBCR; | 302 | bottom2 = CDBCR; |
303 | } | 303 | } |
304 | 304 | ||
305 | /* mem_ops->cookie must not be NULL */ | 305 | phys_addr_top = vb2_dma_contig_plane_paddr(pcdev->active, 0); |
306 | phys_addr_top = (dma_addr_t)icd->vb2_vidq.mem_ops->cookie(pcdev-> | ||
307 | active->planes[0].mem_priv); | ||
308 | 306 | ||
309 | ceu_write(pcdev, top1, phys_addr_top); | 307 | ceu_write(pcdev, top1, phys_addr_top); |
310 | if (V4L2_FIELD_NONE != pcdev->field) { | 308 | if (V4L2_FIELD_NONE != pcdev->field) { |