From: Arun Kumar K Date: Thu, 4 Oct 2012 19:14:56 +0000 (-0300) Subject: [media] s5p-mfc: Set vfl_dir for encoder X-Git-Tag: v3.7-rc1~38^2^2~49 X-Git-Url: http://git.samba.org/samba.git/?a=commitdiff_plain;h=cdcf45e70027d7f65eb04df789bd63c0a2f6f47f;p=sfrench%2Fcifs-2.6.git [media] s5p-mfc: Set vfl_dir for encoder The vfl_dir flag is presently set to VFL_DIR_M2M only for decoder. The encoder is not working because of this. So adding this flag to the encoder part also. Signed-off-by: Arun Kumar K Acked-by: Kamil Debski Signed-off-by: Sylwester Nawrocki Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc.c b/drivers/media/platform/s5p-mfc/s5p_mfc.c index aa551339cb41..130f4ac8649e 100644 --- a/drivers/media/platform/s5p-mfc/s5p_mfc.c +++ b/drivers/media/platform/s5p-mfc/s5p_mfc.c @@ -1155,6 +1155,7 @@ static int s5p_mfc_probe(struct platform_device *pdev) vfd->release = video_device_release, vfd->lock = &dev->mfc_mutex; vfd->v4l2_dev = &dev->v4l2_dev; + vfd->vfl_dir = VFL_DIR_M2M; snprintf(vfd->name, sizeof(vfd->name), "%s", S5P_MFC_ENC_NAME); dev->vfd_enc = vfd; ret = video_register_device(vfd, VFL_TYPE_GRABBER, 0);