aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/s5p-fimc/fimc-core.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/s5p-fimc/fimc-core.c')
-rw-r--r--drivers/media/video/s5p-fimc/fimc-core.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/drivers/media/video/s5p-fimc/fimc-core.c b/drivers/media/video/s5p-fimc/fimc-core.c
index c427edd3cd5..85b47a328a5 100644
--- a/drivers/media/video/s5p-fimc/fimc-core.c
+++ b/drivers/media/video/s5p-fimc/fimc-core.c
@@ -704,22 +704,18 @@ static int fimc_queue_setup(struct vb2_queue *vq, unsigned int *num_buffers,
704 f = ctx_get_frame(ctx, vq->type); 704 f = ctx_get_frame(ctx, vq->type);
705 if (IS_ERR(f)) 705 if (IS_ERR(f))
706 return PTR_ERR(f); 706 return PTR_ERR(f);
707
708 /* 707 /*
709 * Return number of non-contigous planes (plane buffers) 708 * Return number of non-contigous planes (plane buffers)
710 * depending on the configured color format. 709 * depending on the configured color format.
711 */ 710 */
712 if (f->fmt) 711 if (!f->fmt)
713 *num_planes = f->fmt->memplanes; 712 return -EINVAL;
714 713
714 *num_planes = f->fmt->memplanes;
715 for (i = 0; i < f->fmt->memplanes; i++) { 715 for (i = 0; i < f->fmt->memplanes; i++) {
716 sizes[i] = (f->width * f->height * f->fmt->depth[i]) >> 3; 716 sizes[i] = (f->f_width * f->f_height * f->fmt->depth[i]) / 8;
717 allocators[i] = ctx->fimc_dev->alloc_ctx; 717 allocators[i] = ctx->fimc_dev->alloc_ctx;
718 } 718 }
719
720 if (*num_buffers == 0)
721 *num_buffers = 1;
722
723 return 0; 719 return 0;
724} 720}
725 721