aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/media/common/saa7146_video.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/common/saa7146_video.c b/drivers/media/common/saa7146_video.c
index a2a8847e6789..1f837c1f7f74 100644
--- a/drivers/media/common/saa7146_video.c
+++ b/drivers/media/common/saa7146_video.c
@@ -697,7 +697,7 @@ static int vidioc_s_ctrl(struct file *file, void *fh, struct v4l2_control *c)
697 if (IS_CAPTURE_ACTIVE(fh) != 0) { 697 if (IS_CAPTURE_ACTIVE(fh) != 0) {
698 DEB_D(("V4L2_CID_HFLIP while active capture.\n")); 698 DEB_D(("V4L2_CID_HFLIP while active capture.\n"));
699 mutex_unlock(&dev->lock); 699 mutex_unlock(&dev->lock);
700 return -EINVAL; 700 return -EBUSY;
701 } 701 }
702 vv->hflip = c->value; 702 vv->hflip = c->value;
703 break; 703 break;
@@ -705,7 +705,7 @@ static int vidioc_s_ctrl(struct file *file, void *fh, struct v4l2_control *c)
705 if (IS_CAPTURE_ACTIVE(fh) != 0) { 705 if (IS_CAPTURE_ACTIVE(fh) != 0) {
706 DEB_D(("V4L2_CID_VFLIP while active capture.\n")); 706 DEB_D(("V4L2_CID_VFLIP while active capture.\n"));
707 mutex_unlock(&dev->lock); 707 mutex_unlock(&dev->lock);
708 return -EINVAL; 708 return -EBUSY;
709 } 709 }
710 vv->vflip = c->value; 710 vv->vflip = c->value;
711 break; 711 break;