diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2012-05-08 13:00:51 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-05-15 08:52:49 -0300 |
commit | ad3537b56742848743aa11d42ccc1d336682bd5b (patch) | |
tree | 55a0e35765ed6a8f8e5eb7720e9cd000329cb48f /include/media | |
parent | cbde6a2dbaf704defb95958af335fddd770edc4c (diff) | |
download | linux-3.10-ad3537b56742848743aa11d42ccc1d336682bd5b.tar.gz linux-3.10-ad3537b56742848743aa11d42ccc1d336682bd5b.tar.bz2 linux-3.10-ad3537b56742848743aa11d42ccc1d336682bd5b.zip |
[media] V4L: soc-camera: (cosmetic) use a more explicit name for a host handler
Use "enum_framesizes" instead of "enum_fsizes" to more precisely follow
the name of the respective ioctl().
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Reviewed-by: Sergio Aguirre <sergio.a.aguirre@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/soc_camera.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/soc_camera.h b/include/media/soc_camera.h index cad374bdcf4..a87062c393b 100644 --- a/include/media/soc_camera.h +++ b/include/media/soc_camera.h @@ -98,7 +98,7 @@ struct soc_camera_host_ops { int (*set_bus_param)(struct soc_camera_device *); 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 *); + int (*enum_framesizes)(struct soc_camera_device *, struct v4l2_frmsizeenum *); unsigned int (*poll)(struct file *, poll_table *); }; |