media: imx: vdic: Fix wrong CSI group ID
authorSteve Longerbeam <slongerbeam@gmail.com>
Fri, 1 Mar 2019 23:27:17 +0000 (18:27 -0500)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Tue, 19 Mar 2019 20:34:31 +0000 (16:34 -0400)
The i.MX7 capture support forgot to change the group ID for the CSI
to the IPU CSI in VDIC sub-device, it was left at the i.MX7 CSI
group ID.

Fixes: 67673ed55084 ("media: staging/imx: rearrange group id to take in account IPU")

Signed-off-by: Steve Longerbeam <slongerbeam@gmail.com>
Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/staging/media/imx/imx-media-vdic.c

index 8cdd3da..f8c84a0 100644 (file)
@@ -750,7 +750,7 @@ static int vdic_link_setup(struct media_entity *entity,
                remote_sd = media_entity_to_v4l2_subdev(remote->entity);
 
                /* direct pad must connect to a CSI */
-               if (!(remote_sd->grp_id & IMX_MEDIA_GRP_ID_CSI) ||
+               if (!(remote_sd->grp_id & IMX_MEDIA_GRP_ID_IPU_CSI) ||
                    remote->index != CSI_SRC_PAD_DIRECT) {
                        ret = -EINVAL;
                        goto out;