aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/video4linux/v4l2-framework.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/video4linux/v4l2-framework.txt')
-rw-r--r--Documentation/video4linux/v4l2-framework.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/Documentation/video4linux/v4l2-framework.txt b/Documentation/video4linux/v4l2-framework.txt
index 8b358710b2f7..1feecfc59c3d 100644
--- a/Documentation/video4linux/v4l2-framework.txt
+++ b/Documentation/video4linux/v4l2-framework.txt
@@ -334,6 +334,22 @@ for all registered sub-devices marked with V4L2_SUBDEV_FL_HAS_DEVNODE by calling
334v4l2_device_register_subdev_nodes(). Those device nodes will be automatically 334v4l2_device_register_subdev_nodes(). Those device nodes will be automatically
335removed when sub-devices are unregistered. 335removed when sub-devices are unregistered.
336 336
337The device node handles a subset of the V4L2 API.
338
339VIDIOC_QUERYCTRL
340VIDIOC_QUERYMENU
341VIDIOC_G_CTRL
342VIDIOC_S_CTRL
343VIDIOC_G_EXT_CTRLS
344VIDIOC_S_EXT_CTRLS
345VIDIOC_TRY_EXT_CTRLS
346
347 The controls ioctls are identical to the ones defined in V4L2. They
348 behave identically, with the only exception that they deal only with
349 controls implemented in the sub-device. Depending on the driver, those
350 controls can be also be accessed through one (or several) V4L2 device
351 nodes.
352
337 353
338I2C sub-device drivers 354I2C sub-device drivers
339---------------------- 355----------------------