aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/media/v4l2-subdev.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/media/v4l2-subdev.h b/include/media/v4l2-subdev.h
index 7e850355a6f0..1c2318b15bd2 100644
--- a/include/media/v4l2-subdev.h
+++ b/include/media/v4l2-subdev.h
@@ -470,6 +470,11 @@ struct v4l2_subdev_pad_ops {
470 struct v4l2_subdev_selection *sel); 470 struct v4l2_subdev_selection *sel);
471 int (*set_selection)(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh, 471 int (*set_selection)(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh,
472 struct v4l2_subdev_selection *sel); 472 struct v4l2_subdev_selection *sel);
473#ifdef CONFIG_MEDIA_CONTROLLER
474 int (*link_validate)(struct v4l2_subdev *sd, struct media_link *link,
475 struct v4l2_subdev_format *source_fmt,
476 struct v4l2_subdev_format *sink_fmt);
477#endif /* CONFIG_MEDIA_CONTROLLER */
473}; 478};
474 479
475struct v4l2_subdev_ops { 480struct v4l2_subdev_ops {
@@ -602,6 +607,13 @@ static inline void *v4l2_get_subdev_hostdata(const struct v4l2_subdev *sd)
602 return sd->host_priv; 607 return sd->host_priv;
603} 608}
604 609
610#ifdef CONFIG_MEDIA_CONTROLLER
611int v4l2_subdev_link_validate_default(struct v4l2_subdev *sd,
612 struct media_link *link,
613 struct v4l2_subdev_format *source_fmt,
614 struct v4l2_subdev_format *sink_fmt);
615int v4l2_subdev_link_validate(struct media_link *link);
616#endif /* CONFIG_MEDIA_CONTROLLER */
605void v4l2_subdev_init(struct v4l2_subdev *sd, 617void v4l2_subdev_init(struct v4l2_subdev *sd,
606 const struct v4l2_subdev_ops *ops); 618 const struct v4l2_subdev_ops *ops);
607 619