diff options
author | Ingo Molnar <mingo@elte.hu> | 2010-06-18 04:53:12 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-06-18 04:53:19 -0400 |
commit | 646b1db4956ba8bf748b835b5eba211133d91c2e (patch) | |
tree | 061166d873d9da9cf83044a7593ad111787076c5 /drivers/media/video/cx231xx/cx231xx-video.c | |
parent | 0f2c3de2ba110626515234d5d584fb1b0c0749a2 (diff) | |
parent | 7e27d6e778cd87b6f2415515d7127eba53fe5d02 (diff) |
Merge commit 'v2.6.35-rc3' into perf/core
Merge reason: Go from -rc1 base to -rc3 base, merge in fixes.
Diffstat (limited to 'drivers/media/video/cx231xx/cx231xx-video.c')
-rw-r--r-- | drivers/media/video/cx231xx/cx231xx-video.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/media/video/cx231xx/cx231xx-video.c b/drivers/media/video/cx231xx/cx231xx-video.c index 2782709b263f..e76014561aa7 100644 --- a/drivers/media/video/cx231xx/cx231xx-video.c +++ b/drivers/media/video/cx231xx/cx231xx-video.c | |||
@@ -993,6 +993,7 @@ static int vidioc_s_fmt_vid_cap(struct file *file, void *priv, | |||
993 | struct cx231xx *dev = fh->dev; | 993 | struct cx231xx *dev = fh->dev; |
994 | int rc; | 994 | int rc; |
995 | struct cx231xx_fmt *fmt; | 995 | struct cx231xx_fmt *fmt; |
996 | struct v4l2_mbus_framefmt mbus_fmt; | ||
996 | 997 | ||
997 | rc = check_dev(dev); | 998 | rc = check_dev(dev); |
998 | if (rc < 0) | 999 | if (rc < 0) |
@@ -1026,7 +1027,9 @@ static int vidioc_s_fmt_vid_cap(struct file *file, void *priv, | |||
1026 | dev->format = fmt; | 1027 | dev->format = fmt; |
1027 | get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale); | 1028 | get_scale(dev, dev->width, dev->height, &dev->hscale, &dev->vscale); |
1028 | 1029 | ||
1029 | call_all(dev, video, s_fmt, f); | 1030 | v4l2_fill_mbus_format(&mbus_fmt, &f->fmt.pix, V4L2_MBUS_FMT_FIXED); |
1031 | call_all(dev, video, s_mbus_fmt, &mbus_fmt); | ||
1032 | v4l2_fill_pix_format(&f->fmt.pix, &mbus_fmt); | ||
1030 | 1033 | ||
1031 | /* Set the correct alternate setting for this resolution */ | 1034 | /* Set the correct alternate setting for this resolution */ |
1032 | cx231xx_resolution_set(dev); | 1035 | cx231xx_resolution_set(dev); |