[media] s5p-fimc: Iterate for each memory plane
authorNicolas Dufresne <nicolas.dufresne@collabora.com>
Tue, 25 Mar 2014 20:52:31 +0000 (17:52 -0300)
committerMauro Carvalho Chehab <m.chehab@samsung.com>
Tue, 13 May 2014 23:06:21 +0000 (20:06 -0300)
Depth and payload is defined per memory plane. It's better to iterate using
number of memory planes. This was not causing much issue since the rest
of the arrays involved where intialized to zero.

Signed-off-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
drivers/media/platform/exynos4-is/fimc-core.c
drivers/media/platform/exynos4-is/fimc-m2m.c

index 25dbf5b..53f12ac 100644 (file)
@@ -450,7 +450,7 @@ void fimc_prepare_dma_offset(struct fimc_ctx *ctx, struct fimc_frame *f)
        bool pix_hoff = ctx->fimc_dev->drv_data->dma_pix_hoff;
        u32 i, depth = 0;
 
-       for (i = 0; i < f->fmt->colplanes; i++)
+       for (i = 0; i < f->fmt->memplanes; i++)
                depth += f->fmt->depth[i];
 
        f->dma_offset.y_h = f->offs_h;
index d314155..417a678 100644 (file)
@@ -341,7 +341,7 @@ static void __set_frame_format(struct fimc_frame *frame, struct fimc_fmt *fmt,
 {
        int i;
 
-       for (i = 0; i < fmt->colplanes; i++) {
+       for (i = 0; i < fmt->memplanes; i++) {
                frame->bytesperline[i] = pixm->plane_fmt[i].bytesperline;
                frame->payload[i] = pixm->plane_fmt[i].sizeimage;
        }
@@ -460,7 +460,7 @@ static int fimc_m2m_try_crop(struct fimc_ctx *ctx, struct v4l2_crop *cr)
        else
                halign = ffs(fimc->variant->min_vsize_align) - 1;
 
-       for (i = 0; i < f->fmt->colplanes; i++)
+       for (i = 0; i < f->fmt->memplanes; i++)
                depth += f->fmt->depth[i];
 
        v4l_bound_align_image(&cr->c.width, min_size, f->o_width,