diff options
author | Sakari Ailus <sakari.ailus@linux.intel.com> | 2020-11-30 16:44:32 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-01-12 17:52:41 +0300 |
commit | 352cf679c73d30c2262aa337d7e2ce93c66dd2b6 (patch) | |
tree | 2db69b5bd9c8dcaddfe2beba4a2bc39f3cae8c79 /Documentation/driver-api/media | |
parent | ecd07f4b9d2173694be9214a3ab07f9efb5ba206 (diff) | |
download | linux-352cf679c73d30c2262aa337d7e2ce93c66dd2b6.tar.xz |
media: Documentation: v4l: Remove reference to video ops
We no longer have format related callbacks in video ops. Remove the
reference to them.
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'Documentation/driver-api/media')
-rw-r--r-- | Documentation/driver-api/media/v4l2-subdev.rst | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Documentation/driver-api/media/v4l2-subdev.rst b/Documentation/driver-api/media/v4l2-subdev.rst index bb5b1a7cdfd9..d4cba0d6c4ca 100644 --- a/Documentation/driver-api/media/v4l2-subdev.rst +++ b/Documentation/driver-api/media/v4l2-subdev.rst @@ -122,10 +122,6 @@ Don't forget to cleanup the media entity before the sub-device is destroyed: media_entity_cleanup(&sd->entity); -If the subdev driver intends to process video and integrate with the media -framework, it must implement format related functionality using -:c:type:`v4l2_subdev_pad_ops` instead of :c:type:`v4l2_subdev_video_ops`. - In that case, the subdev driver may set the link_validate field to provide its own link validation function. The link validation function is called for every link in the pipeline where both of the ends of the links are V4L2 |