diff options
author | Hans Verkuil <[email protected]> | 2013-03-30 05:31:42 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <[email protected]> | 2013-03-31 11:10:26 -0300 |
commit | 46f85978687152c53a69fc06951e386f194e7f5d (patch) | |
tree | fc06b07bdb43aa00a7782bb597c75107a57d2aaf | |
parent | 56fa1a6a6a7da91e7ece8b01b0ae8adb2926e434 (diff) |
[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 <[email protected]>
Acked-by: Frank Schäfer <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-rw-r--r-- | drivers/media/usb/em28xx/em28xx-video.c | 2 |
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 ef1959bbd23f..792ead1025d7 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; |