Lines Matching refs:wpf
55 struct vsp1_rwpf *wpf = vsp1->wpf[i]; in vsp1_irq_handler() local
57 if (wpf == NULL) in vsp1_irq_handler()
64 vsp1_pipeline_frame_end(wpf->entity.pipe); in vsp1_irq_handler()
173 ret = media_create_pad_link(&vsp1->wpf[i]->entity.subdev.entity, in vsp1_uapi_create_links()
198 struct vsp1_rwpf *wpf = vsp1->wpf[i]; in vsp1_uapi_create_links() local
200 ret = media_create_pad_link(&wpf->entity.subdev.entity, in vsp1_uapi_create_links()
202 &wpf->video->video.entity, 0, in vsp1_uapi_create_links()
426 struct vsp1_rwpf *wpf; in vsp1_create_entities() local
428 wpf = vsp1_wpf_create(vsp1, i); in vsp1_create_entities()
429 if (IS_ERR(wpf)) { in vsp1_create_entities()
430 ret = PTR_ERR(wpf); in vsp1_create_entities()
434 vsp1->wpf[i] = wpf; in vsp1_create_entities()
435 list_add_tail(&wpf->entity.list_dev, &vsp1->entities); in vsp1_create_entities()
438 struct vsp1_video *video = vsp1_video_create(vsp1, wpf); in vsp1_create_entities()