Commit d2219824 authored by Laurent Pinchart's avatar Laurent Pinchart Committed by Mauro Carvalho Chehab

[media] v4l: vsp1: Rename pipeline validate functions to pipeline build

The primary purpose of those functions is to build the pipeline, rename
them to make this clearer.
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 5e8dbbf3
...@@ -172,9 +172,9 @@ static int __vsp1_video_try_format(struct vsp1_video *video, ...@@ -172,9 +172,9 @@ static int __vsp1_video_try_format(struct vsp1_video *video,
* Pipeline Management * Pipeline Management
*/ */
static int vsp1_video_pipeline_validate_branch(struct vsp1_pipeline *pipe, static int vsp1_video_pipeline_build_branch(struct vsp1_pipeline *pipe,
struct vsp1_rwpf *input, struct vsp1_rwpf *input,
struct vsp1_rwpf *output) struct vsp1_rwpf *output)
{ {
struct media_entity_enum ent_enum; struct media_entity_enum ent_enum;
struct vsp1_entity *entity; struct vsp1_entity *entity;
...@@ -257,8 +257,8 @@ static int vsp1_video_pipeline_validate_branch(struct vsp1_pipeline *pipe, ...@@ -257,8 +257,8 @@ static int vsp1_video_pipeline_validate_branch(struct vsp1_pipeline *pipe,
return ret; return ret;
} }
static int vsp1_video_pipeline_validate(struct vsp1_pipeline *pipe, static int vsp1_video_pipeline_build(struct vsp1_pipeline *pipe,
struct vsp1_video *video) struct vsp1_video *video)
{ {
struct media_entity_graph graph; struct media_entity_graph graph;
struct media_entity *entity = &video->video.entity; struct media_entity *entity = &video->video.entity;
...@@ -321,8 +321,8 @@ static int vsp1_video_pipeline_validate(struct vsp1_pipeline *pipe, ...@@ -321,8 +321,8 @@ static int vsp1_video_pipeline_validate(struct vsp1_pipeline *pipe,
if (!pipe->inputs[i]) if (!pipe->inputs[i])
continue; continue;
ret = vsp1_video_pipeline_validate_branch(pipe, pipe->inputs[i], ret = vsp1_video_pipeline_build_branch(pipe, pipe->inputs[i],
pipe->output); pipe->output);
if (ret < 0) if (ret < 0)
goto error; goto error;
} }
...@@ -341,9 +341,9 @@ static int vsp1_video_pipeline_init(struct vsp1_pipeline *pipe, ...@@ -341,9 +341,9 @@ static int vsp1_video_pipeline_init(struct vsp1_pipeline *pipe,
mutex_lock(&pipe->lock); mutex_lock(&pipe->lock);
/* If we're the first user validate and initialize the pipeline. */ /* If we're the first user build and validate the pipeline. */
if (pipe->use_count == 0) { if (pipe->use_count == 0) {
ret = vsp1_video_pipeline_validate(pipe, video); ret = vsp1_video_pipeline_build(pipe, video);
if (ret < 0) if (ret < 0)
goto done; goto done;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment