diff options
| -rw-r--r-- | drivers/staging/media/omap4iss/iss_video.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/staging/media/omap4iss/iss_video.c b/drivers/staging/media/omap4iss/iss_video.c index 63419b3769b5..68006231cc41 100644 --- a/drivers/staging/media/omap4iss/iss_video.c +++ b/drivers/staging/media/omap4iss/iss_video.c | |||
| @@ -243,12 +243,11 @@ __iss_video_get_format(struct iss_video *video, struct v4l2_format *format) | |||
| 243 | if (subdev == NULL) | 243 | if (subdev == NULL) |
| 244 | return -EINVAL; | 244 | return -EINVAL; |
| 245 | 245 | ||
| 246 | mutex_lock(&video->mutex); | ||
| 247 | |||
| 248 | fmt.pad = pad; | 246 | fmt.pad = pad; |
| 249 | fmt.which = V4L2_SUBDEV_FORMAT_ACTIVE; | 247 | fmt.which = V4L2_SUBDEV_FORMAT_ACTIVE; |
| 250 | ret = v4l2_subdev_call(subdev, pad, get_fmt, NULL, &fmt); | ||
| 251 | 248 | ||
| 249 | mutex_lock(&video->mutex); | ||
| 250 | ret = v4l2_subdev_call(subdev, pad, get_fmt, NULL, &fmt); | ||
| 252 | mutex_unlock(&video->mutex); | 251 | mutex_unlock(&video->mutex); |
| 253 | 252 | ||
| 254 | if (ret) | 253 | if (ret) |
