diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2010-08-05 18:23:44 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-08-08 22:43:02 -0400 |
commit | 103754a0526fe35bddbcd8ccc913495c2a66ac21 (patch) | |
tree | 027bc6f68e52a7c0e68ad99ae39be0ca255821dd /drivers/media/video/soc_camera.c | |
parent | a484dd9b77fbbda2a79bf1b371c6d31f90e15504 (diff) |
V4L/DVB: soc-camera: prohibit S_CROP, if internal G_CROP has failed
There is no sense in trying to set cropping if we cannot get current one
from the host driver.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/soc_camera.c')
-rw-r--r-- | drivers/media/video/soc_camera.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/media/video/soc_camera.c b/drivers/media/video/soc_camera.c index f2032939fd4b..a499cacec1f3 100644 --- a/drivers/media/video/soc_camera.c +++ b/drivers/media/video/soc_camera.c | |||
@@ -779,9 +779,12 @@ static int soc_camera_s_crop(struct file *file, void *fh, | |||
779 | ret = ici->ops->get_crop(icd, ¤t_crop); | 779 | ret = ici->ops->get_crop(icd, ¤t_crop); |
780 | 780 | ||
781 | /* Prohibit window size change with initialised buffers */ | 781 | /* Prohibit window size change with initialised buffers */ |
782 | if (icf->vb_vidq.bufs[0] && !ret && | 782 | if (ret < 0) { |
783 | (a->c.width != current_crop.c.width || | 783 | dev_err(&icd->dev, |
784 | a->c.height != current_crop.c.height)) { | 784 | "S_CROP denied: getting current crop failed\n"); |
785 | } else if (icf->vb_vidq.bufs[0] && | ||
786 | (a->c.width != current_crop.c.width || | ||
787 | a->c.height != current_crop.c.height)) { | ||
785 | dev_err(&icd->dev, | 788 | dev_err(&icd->dev, |
786 | "S_CROP denied: queue initialised and sizes differ\n"); | 789 | "S_CROP denied: queue initialised and sizes differ\n"); |
787 | ret = -EBUSY; | 790 | ret = -EBUSY; |