Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 137803
b: refs/heads/master
c: de6476f
h: refs/heads/master
i:
  137801: 0b942a4
  137799: c25a6fb
v: v3
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Mar 30, 2009
1 parent ef61991 commit 1b3a629
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d9ddd3b01043269a9a8803b6b8b8b472e054733c
refs/heads/master: de6476f5f6ae9f792a8828782bdbc47372a021fb
2 changes: 1 addition & 1 deletion trunk/drivers/media/video/cx18/cx18-av-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ static int set_v4lctrl(struct cx18 *cx, struct v4l2_control *ctrl)
break;

case V4L2_CID_HUE:
if (ctrl->value < -127 || ctrl->value > 127) {
if (ctrl->value < -128 || ctrl->value > 127) {
CX18_ERR("invalid hue setting %d\n", ctrl->value);
return -ERANGE;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/video/cx25840/cx25840-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,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;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/video/saa7115.c
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ static int saa711x_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) {
v4l2_err(sd, "invalid hue setting %d\n", ctrl->value);
return -ERANGE;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/video/saa717x.c
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ static int saa717x_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) {
v4l2_err(sd, "invalid hue setting %d\n", ctrl->value);
return -ERANGE;
}
Expand Down

0 comments on commit 1b3a629

Please sign in to comment.