diff options
author | Qing Xu | 2011-01-20 09:19:40 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab | 2011-03-22 00:32:13 +0100 |
commit | ed5b65dc362d488958075381d97931d865e77259 (patch) | |
tree | e273587ec244a43dc99b179f16479b7b8d3d21f8 /include | |
parent | [media] V4L: add enum_mbus_fsizes video operation (diff) | |
download | kernel-qcow2-linux-ed5b65dc362d488958075381d97931d865e77259.tar.gz kernel-qcow2-linux-ed5b65dc362d488958075381d97931d865e77259.tar.xz kernel-qcow2-linux-ed5b65dc362d488958075381d97931d865e77259.zip |
[media] V4L: soc-camera: add enum-frame-size ioctl
add vidioc_enum_framesizes implementation, follow default_g_parm()
and g_mbus_fmt() method
Signed-off-by: Qing Xu <qingx@marvell.com>
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/media/soc_camera.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/media/soc_camera.h b/include/media/soc_camera.h index 9386db829fb7..09b827192ae7 100644 --- a/include/media/soc_camera.h +++ b/include/media/soc_camera.h @@ -85,6 +85,7 @@ struct soc_camera_host_ops { int (*set_ctrl)(struct soc_camera_device *, struct v4l2_control *); int (*get_parm)(struct soc_camera_device *, struct v4l2_streamparm *); int (*set_parm)(struct soc_camera_device *, struct v4l2_streamparm *); + int (*enum_fsizes)(struct soc_camera_device *, struct v4l2_frmsizeenum *); unsigned int (*poll)(struct file *, poll_table *); const struct v4l2_queryctrl *controls; int num_controls; |