summaryrefslogtreecommitdiff
path: root/drivers/media/usb/em28xx
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2013-03-30 08:31:42 (GMT)
committerMauro Carvalho Chehab <mchehab@redhat.com>2013-03-31 14:10:26 (GMT)
commit46f85978687152c53a69fc06951e386f194e7f5d (patch)
treefc06b07bdb43aa00a7782bb597c75107a57d2aaf /drivers/media/usb/em28xx
parent56fa1a6a6a7da91e7ece8b01b0ae8adb2926e434 (diff)
downloadlinux-fsl-qoriq-46f85978687152c53a69fc06951e386f194e7f5d.tar.xz
[media] em28xx: fix typo in scale_to_size()
em28xx: fix typo in scale_to_size(). The second hscale should be vscale. This bug caused xawtv to fail because it cannot find a workable image size. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Acked-by: Frank Schäfer <fschaefer.oss@googlemail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/usb/em28xx')
-rw-r--r--drivers/media/usb/em28xx/em28xx-video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/em28xx/em28xx-video.c b/drivers/media/usb/em28xx/em28xx-video.c
index ef1959b..792ead1 100644
--- a/drivers/media/usb/em28xx/em28xx-video.c
+++ b/drivers/media/usb/em28xx/em28xx-video.c
@@ -996,7 +996,7 @@ static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
}
size_to_scale(dev, width, height, &hscale, &vscale);
- scale_to_size(dev, hscale, hscale, &width, &height);
+ scale_to_size(dev, hscale, vscale, &width, &height);
f->fmt.pix.width = width;
f->fmt.pix.height = height;