diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-01-29 20:09:13 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2009-01-29 20:09:13 +0100 |
commit | 5d9421a2aa921a698637f5c8fc09b473a19eb075 (patch) | |
tree | a08d85a4938239fd1f8e3442454493b9991f13eb /linux/drivers/media/video/cx25840 | |
parent | 3ed435da6a1187ff0d878fea1daa3fb46e89ebca (diff) | |
download | mediapointer-dvb-s2-5d9421a2aa921a698637f5c8fc09b473a19eb075.tar.gz mediapointer-dvb-s2-5d9421a2aa921a698637f5c8fc09b473a19eb075.tar.bz2 |
v4l2: fix incorrect hue range check
From: Hans Verkuil <hverkuil@xs4all.nl>
A hue of -128 was rejected due to an incorrect range check, which was
faithfully copy-and-pasted into four drivers...
Priority: normal
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux/drivers/media/video/cx25840')
-rw-r--r-- | linux/drivers/media/video/cx25840/cx25840-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx25840/cx25840-core.c b/linux/drivers/media/video/cx25840/cx25840-core.c index 57e80717f..d70dcd028 100644 --- a/linux/drivers/media/video/cx25840/cx25840-core.c +++ b/linux/drivers/media/video/cx25840/cx25840-core.c @@ -782,7 +782,7 @@ static int cx25840_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl) break; case V4L2_CID_HUE: - if (ctrl->value < -127 || ctrl->value > 127) { + if (ctrl->value < -128 || ctrl->value > 127) { v4l_err(client, "invalid hue setting %d\n", ctrl->value); return -ERANGE; } |