diff options
Diffstat (limited to 'drivers/media/video')
-rw-r--r-- | drivers/media/video/soc_camera.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/drivers/media/video/soc_camera.c b/drivers/media/video/soc_camera.c index e869670dbae5..b12d11f213bd 100644 --- a/drivers/media/video/soc_camera.c +++ b/drivers/media/video/soc_camera.c | |||
@@ -152,7 +152,14 @@ static int soc_camera_s_input(struct file *file, void *priv, unsigned int i) | |||
152 | 152 | ||
153 | static int soc_camera_s_std(struct file *file, void *priv, v4l2_std_id *a) | 153 | static int soc_camera_s_std(struct file *file, void *priv, v4l2_std_id *a) |
154 | { | 154 | { |
155 | return 0; | 155 | struct soc_camera_file *icf = file->private_data; |
156 | struct soc_camera_device *icd = icf->icd; | ||
157 | int ret = 0; | ||
158 | |||
159 | if (icd->ops->set_std) | ||
160 | ret = icd->ops->set_std(icd, a); | ||
161 | |||
162 | return ret; | ||
156 | } | 163 | } |
157 | 164 | ||
158 | static int soc_camera_reqbufs(struct file *file, void *priv, | 165 | static int soc_camera_reqbufs(struct file *file, void *priv, |