Lines Matching refs:wpf
54 struct vsp1_rwpf *wpf = vsp1->wpf[i]; in vsp1_irq_handler() local
56 if (wpf == NULL) in vsp1_irq_handler()
63 vsp1_pipeline_frame_end(wpf->entity.pipe); in vsp1_irq_handler()
172 ret = media_create_pad_link(&vsp1->wpf[i]->entity.subdev.entity, in vsp1_uapi_create_links()
197 struct vsp1_rwpf *wpf = vsp1->wpf[i]; in vsp1_uapi_create_links() local
199 ret = media_create_pad_link(&wpf->entity.subdev.entity, in vsp1_uapi_create_links()
201 &wpf->video->video.entity, 0, in vsp1_uapi_create_links()
427 struct vsp1_rwpf *wpf; in vsp1_create_entities() local
429 wpf = vsp1_wpf_create(vsp1, i); in vsp1_create_entities()
430 if (IS_ERR(wpf)) { in vsp1_create_entities()
431 ret = PTR_ERR(wpf); in vsp1_create_entities()
435 vsp1->wpf[i] = wpf; in vsp1_create_entities()
436 list_add_tail(&wpf->entity.list_dev, &vsp1->entities); in vsp1_create_entities()
439 struct vsp1_video *video = vsp1_video_create(vsp1, wpf); in vsp1_create_entities()