diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2011-06-07 05:24:32 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-07-27 16:53:23 -0400 |
commit | 8318a64b892a4de629c3365b3acd8f7d2d7e6100 (patch) | |
tree | ea9693cdfabcb5993d4bfbbf4e6814a839dacf12 /include | |
parent | 14c5ea9bb411f094160626daed03c67641be076a (diff) |
[media] V4L: soc-camera: remove several now unused soc-camera client operations
This patch removes .enum_input(), .suspend() and .resume() soc-camera
client operations.
Functionality, provided by .enum_input(), if needed, can be implemented
using the v4l2-subdev API.
As for .suspend() and .resume(), the only client driver, implementing
these methods has been mt9m111, and the only host driver, using them
has been pxa-camera. Now that both those drivers have been converted
to the standard subdev .s_power() operation, .suspend() and .resume()
can be removed.
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 | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/media/soc_camera.h b/include/media/soc_camera.h index e34b5e615f2a..21dd8a41f4c1 100644 --- a/include/media/soc_camera.h +++ b/include/media/soc_camera.h | |||
@@ -201,11 +201,8 @@ struct soc_camera_format_xlate { | |||
201 | }; | 201 | }; |
202 | 202 | ||
203 | struct soc_camera_ops { | 203 | struct soc_camera_ops { |
204 | int (*suspend)(struct soc_camera_device *, pm_message_t state); | ||
205 | int (*resume)(struct soc_camera_device *); | ||
206 | unsigned long (*query_bus_param)(struct soc_camera_device *); | 204 | unsigned long (*query_bus_param)(struct soc_camera_device *); |
207 | int (*set_bus_param)(struct soc_camera_device *, unsigned long); | 205 | int (*set_bus_param)(struct soc_camera_device *, unsigned long); |
208 | int (*enum_input)(struct soc_camera_device *, struct v4l2_input *); | ||
209 | const struct v4l2_queryctrl *controls; | 206 | const struct v4l2_queryctrl *controls; |
210 | int num_controls; | 207 | int num_controls; |
211 | }; | 208 | }; |