aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/media/video/soc_camera.c17
-rw-r--r--include/media/soc_camera.h3
2 files changed, 5 insertions, 15 deletions
diff --git a/drivers/media/video/soc_camera.c b/drivers/media/video/soc_camera.c
index 4e4d4122d9a6..136326e8c4b0 100644
--- a/drivers/media/video/soc_camera.c
+++ b/drivers/media/video/soc_camera.c
@@ -199,22 +199,15 @@ static int soc_camera_try_fmt_vid_cap(struct file *file, void *priv,
199static int soc_camera_enum_input(struct file *file, void *priv, 199static int soc_camera_enum_input(struct file *file, void *priv,
200 struct v4l2_input *inp) 200 struct v4l2_input *inp)
201{ 201{
202 struct soc_camera_device *icd = file->private_data;
203 int ret = 0;
204
205 if (inp->index != 0) 202 if (inp->index != 0)
206 return -EINVAL; 203 return -EINVAL;
207 204
208 if (icd->ops->enum_input) 205 /* default is camera */
209 ret = icd->ops->enum_input(icd, inp); 206 inp->type = V4L2_INPUT_TYPE_CAMERA;
210 else { 207 inp->std = V4L2_STD_UNKNOWN;
211 /* default is camera */ 208 strcpy(inp->name, "Camera");
212 inp->type = V4L2_INPUT_TYPE_CAMERA;
213 inp->std = V4L2_STD_UNKNOWN;
214 strcpy(inp->name, "Camera");
215 }
216 209
217 return ret; 210 return 0;
218} 211}
219 212
220static int soc_camera_g_input(struct file *file, void *priv, unsigned int *i) 213static int soc_camera_g_input(struct file *file, void *priv, unsigned int *i)
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
203struct soc_camera_ops { 203struct 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};