Commit ecc0b947 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab

V4L/DVB (3354): Fix maximum for the saturation and contrast controls.

Signed-off-by: default avatarHans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent fddd632a
...@@ -567,7 +567,7 @@ static struct v4l2_queryctrl cx25840_qctrl[] = { ...@@ -567,7 +567,7 @@ static struct v4l2_queryctrl cx25840_qctrl[] = {
.type = V4L2_CTRL_TYPE_INTEGER, .type = V4L2_CTRL_TYPE_INTEGER,
.name = "Contrast", .name = "Contrast",
.minimum = 0, .minimum = 0,
.maximum = 255, .maximum = 127,
.step = 1, .step = 1,
.default_value = 64, .default_value = 64,
.flags = 0, .flags = 0,
...@@ -576,7 +576,7 @@ static struct v4l2_queryctrl cx25840_qctrl[] = { ...@@ -576,7 +576,7 @@ static struct v4l2_queryctrl cx25840_qctrl[] = {
.type = V4L2_CTRL_TYPE_INTEGER, .type = V4L2_CTRL_TYPE_INTEGER,
.name = "Saturation", .name = "Saturation",
.minimum = 0, .minimum = 0,
.maximum = 255, .maximum = 127,
.step = 1, .step = 1,
.default_value = 64, .default_value = 64,
.flags = 0, .flags = 0,
......
...@@ -1027,7 +1027,7 @@ static struct v4l2_queryctrl saa7115_qctrl[] = { ...@@ -1027,7 +1027,7 @@ static struct v4l2_queryctrl saa7115_qctrl[] = {
.type = V4L2_CTRL_TYPE_INTEGER, .type = V4L2_CTRL_TYPE_INTEGER,
.name = "Contrast", .name = "Contrast",
.minimum = 0, .minimum = 0,
.maximum = 255, .maximum = 127,
.step = 1, .step = 1,
.default_value = 64, .default_value = 64,
.flags = 0, .flags = 0,
...@@ -1036,7 +1036,7 @@ static struct v4l2_queryctrl saa7115_qctrl[] = { ...@@ -1036,7 +1036,7 @@ static struct v4l2_queryctrl saa7115_qctrl[] = {
.type = V4L2_CTRL_TYPE_INTEGER, .type = V4L2_CTRL_TYPE_INTEGER,
.name = "Saturation", .name = "Saturation",
.minimum = 0, .minimum = 0,
.maximum = 255, .maximum = 127,
.step = 1, .step = 1,
.default_value = 64, .default_value = 64,
.flags = 0, .flags = 0,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment