[media] v4l: vsp1: Base link creation on availability of entities

Check the entity pointer instead of the feature flag to see if the
entity is available before creating related links. The two methods are
currently equivalent, but will differ in the future as we implement
support for ignoring some of the entities present in the hardware.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
Laurent Pinchart 2016-05-13 13:04:51 -03:00 committed by Mauro Carvalho Chehab
parent eaa0b96bbb
commit 078e04993a
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ static int vsp1_uapi_create_links(struct vsp1_device *vsp1)
return ret; return ret;
} }
if (vsp1->info->features & VSP1_HAS_LIF) { if (vsp1->lif) {
ret = media_create_pad_link(&vsp1->wpf[0]->entity.subdev.entity, ret = media_create_pad_link(&vsp1->wpf[0]->entity.subdev.entity,
RWPF_PAD_SOURCE, RWPF_PAD_SOURCE,
&vsp1->lif->entity.subdev.entity, &vsp1->lif->entity.subdev.entity,