diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-12-23 10:17:23 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-01-02 14:10:56 -0500 |
commit | dfa9a5ae679ff2d23caa995d0f55a19abaf0596e (patch) | |
tree | 4cfa951fd0dcc281881b5499f4ecdca29ea22de1 /Documentation | |
parent | 50a2a8b35edec09aff900a9b1c629776e11c5c88 (diff) |
V4L/DVB (10134): v4l2 doc: set v4l2_dev instead of parent.
Update the documentation now that the v4l2_dev field is in.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/video4linux/v4l2-framework.txt | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Documentation/video4linux/v4l2-framework.txt b/Documentation/video4linux/v4l2-framework.txt index ba9344294d6f..38d054aa0e0f 100644 --- a/Documentation/video4linux/v4l2-framework.txt +++ b/Documentation/video4linux/v4l2-framework.txt | |||
@@ -390,8 +390,7 @@ allocated memory. | |||
390 | 390 | ||
391 | You should also set these fields: | 391 | You should also set these fields: |
392 | 392 | ||
393 | - parent: set to the parent device (same device as was used to register | 393 | - v4l2_dev: set to the v4l2_device parent device. |
394 | v4l2_device). | ||
395 | - name: set to something descriptive and unique. | 394 | - name: set to something descriptive and unique. |
396 | - fops: set to the file_operations struct. | 395 | - fops: set to the file_operations struct. |
397 | - ioctl_ops: if you use the v4l2_ioctl_ops to simplify ioctl maintenance | 396 | - ioctl_ops: if you use the v4l2_ioctl_ops to simplify ioctl maintenance |
@@ -516,5 +515,4 @@ void *video_drvdata(struct file *file); | |||
516 | 515 | ||
517 | You can go from a video_device struct to the v4l2_device struct using: | 516 | You can go from a video_device struct to the v4l2_device struct using: |
518 | 517 | ||
519 | struct v4l2_device *v4l2_dev = dev_get_drvdata(vdev->parent); | 518 | struct v4l2_device *v4l2_dev = vdev->v4l2_dev; |
520 | |||