aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2009-01-29 14:09:13 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-03-30 11:42:35 -0400
commitde6476f5f6ae9f792a8828782bdbc47372a021fb (patch)
tree439c89ca6c69461b8001056f895d496185109f11 /drivers/media/video
parentd9ddd3b01043269a9a8803b6b8b8b472e054733c (diff)
V4L/DVB (10408): v4l2: fix incorrect hue range check
A hue of -128 was rejected due to an incorrect range check, which was faithfully copy-and-pasted into four drivers... Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video')
-rw-r--r--drivers/media/video/cx18/cx18-av-core.c2
-rw-r--r--drivers/media/video/cx25840/cx25840-core.c2
-rw-r--r--drivers/media/video/saa7115.c2
-rw-r--r--drivers/media/video/saa717x.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/video/cx18/cx18-av-core.c b/drivers/media/video/cx18/cx18-av-core.c
index 0b1c84b4ddd6..780125002cbc 100644
--- a/drivers/media/video/cx18/cx18-av-core.c
+++ b/drivers/media/video/cx18/cx18-av-core.c
@@ -548,7 +548,7 @@ static int set_v4lctrl(struct cx18 *cx, struct v4l2_control *ctrl)
548 break; 548 break;
549 549
550 case V4L2_CID_HUE: 550 case V4L2_CID_HUE:
551 if (ctrl->value < -127 || ctrl->value > 127) { 551 if (ctrl->value < -128 || ctrl->value > 127) {
552 CX18_ERR("invalid hue setting %d\n", ctrl->value); 552 CX18_ERR("invalid hue setting %d\n", ctrl->value);
553 return -ERANGE; 553 return -ERANGE;
554 } 554 }
diff --git a/drivers/media/video/cx25840/cx25840-core.c b/drivers/media/video/cx25840/cx25840-core.c
index be467b4b9545..d4059ecaa58e 100644
--- a/drivers/media/video/cx25840/cx25840-core.c
+++ b/drivers/media/video/cx25840/cx25840-core.c
@@ -763,7 +763,7 @@ static int cx25840_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
763 break; 763 break;
764 764
765 case V4L2_CID_HUE: 765 case V4L2_CID_HUE:
766 if (ctrl->value < -127 || ctrl->value > 127) { 766 if (ctrl->value < -128 || ctrl->value > 127) {
767 v4l_err(client, "invalid hue setting %d\n", ctrl->value); 767 v4l_err(client, "invalid hue setting %d\n", ctrl->value);
768 return -ERANGE; 768 return -ERANGE;
769 } 769 }
diff --git a/drivers/media/video/saa7115.c b/drivers/media/video/saa7115.c
index 46c796c3fec8..dd1943987ce6 100644
--- a/drivers/media/video/saa7115.c
+++ b/drivers/media/video/saa7115.c
@@ -778,7 +778,7 @@ static int saa711x_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
778 break; 778 break;
779 779
780 case V4L2_CID_HUE: 780 case V4L2_CID_HUE:
781 if (ctrl->value < -127 || ctrl->value > 127) { 781 if (ctrl->value < -128 || ctrl->value > 127) {
782 v4l2_err(sd, "invalid hue setting %d\n", ctrl->value); 782 v4l2_err(sd, "invalid hue setting %d\n", ctrl->value);
783 return -ERANGE; 783 return -ERANGE;
784 } 784 }
diff --git a/drivers/media/video/saa717x.c b/drivers/media/video/saa717x.c
index 88c5e942f751..490b9049b987 100644
--- a/drivers/media/video/saa717x.c
+++ b/drivers/media/video/saa717x.c
@@ -931,7 +931,7 @@ static int saa717x_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
931 break; 931 break;
932 932
933 case V4L2_CID_HUE: 933 case V4L2_CID_HUE:
934 if (ctrl->value < -127 || ctrl->value > 127) { 934 if (ctrl->value < -128 || ctrl->value > 127) {
935 v4l2_err(sd, "invalid hue setting %d\n", ctrl->value); 935 v4l2_err(sd, "invalid hue setting %d\n", ctrl->value);
936 return -ERANGE; 936 return -ERANGE;
937 } 937 }