diff options
author | Kuninori Morimoto <morimoto.kuninori@renesas.com> | 2008-12-18 10:47:46 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-30 06:40:24 -0500 |
commit | 34d359db7d683e227f27595ad3702fb2ae96108a (patch) | |
tree | 698996d4605f09ff155577f60b01213a2f96a355 /drivers/media/video/soc_camera.c | |
parent | 513791aba6266e0c15d5b697b97e956e83537f5a (diff) |
V4L/DVB (10087): Add new enum_input function on soc_camera
This patch presents new method to be able to select V4L2 input type
Signed-off-by: Kuninori Morimoto <morimoto.kuninori@renesas.com>
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/soc_camera.c')
-rw-r--r-- | drivers/media/video/soc_camera.c | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/drivers/media/video/soc_camera.c b/drivers/media/video/soc_camera.c index b12d11f213bd..e86e6bda1b7f 100644 --- a/drivers/media/video/soc_camera.c +++ b/drivers/media/video/soc_camera.c | |||
@@ -125,14 +125,23 @@ static int soc_camera_try_fmt_vid_cap(struct file *file, void *priv, | |||
125 | static int soc_camera_enum_input(struct file *file, void *priv, | 125 | static int soc_camera_enum_input(struct file *file, void *priv, |
126 | struct v4l2_input *inp) | 126 | struct v4l2_input *inp) |
127 | { | 127 | { |
128 | struct soc_camera_file *icf = file->private_data; | ||
129 | struct soc_camera_device *icd = icf->icd; | ||
130 | int ret = 0; | ||
131 | |||
128 | if (inp->index != 0) | 132 | if (inp->index != 0) |
129 | return -EINVAL; | 133 | return -EINVAL; |
130 | 134 | ||
131 | inp->type = V4L2_INPUT_TYPE_CAMERA; | 135 | if (icd->ops->enum_input) |
132 | inp->std = V4L2_STD_UNKNOWN; | 136 | ret = icd->ops->enum_input(icd, inp); |
133 | strcpy(inp->name, "Camera"); | 137 | else { |
138 | /* default is camera */ | ||
139 | inp->type = V4L2_INPUT_TYPE_CAMERA; | ||
140 | inp->std = V4L2_STD_UNKNOWN; | ||
141 | strcpy(inp->name, "Camera"); | ||
142 | } | ||
134 | 143 | ||
135 | return 0; | 144 | return ret; |
136 | } | 145 | } |
137 | 146 | ||
138 | static int soc_camera_g_input(struct file *file, void *priv, unsigned int *i) | 147 | static int soc_camera_g_input(struct file *file, void *priv, unsigned int *i) |