Skip to content

Commit

Permalink
[media] v4l2-ctrls: make manual_mode_value 8 bits and check against c…
Browse files Browse the repository at this point in the history
…ontrol range

Signed-off-by: Hans Verkuil <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Jul 27, 2011
1 parent 2330fb8 commit 82a7c04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions drivers/media/video/v4l2-ctrls.c
Original file line number Diff line number Diff line change
Expand Up @@ -1264,6 +1264,7 @@ void v4l2_ctrl_auto_cluster(unsigned ncontrols, struct v4l2_ctrl **controls,

v4l2_ctrl_cluster(ncontrols, controls);
WARN_ON(ncontrols <= 1);
WARN_ON(manual_val < master->minimum || manual_val > master->maximum);
master->is_auto = true;
master->manual_mode_value = manual_val;
master->flags |= V4L2_CTRL_FLAG_UPDATE;
Expand Down
2 changes: 1 addition & 1 deletion include/media/v4l2-ctrls.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ struct v4l2_ctrl {
unsigned int is_private:1;
unsigned int is_volatile:1;
unsigned int is_auto:1;
unsigned int manual_mode_value:5;
unsigned int manual_mode_value:8;

const struct v4l2_ctrl_ops *ops;
u32 id;
Expand Down

0 comments on commit 82a7c04

Please sign in to comment.