Skip to content

Commit

Permalink
V4L/DVB (3643): Fix default values for tvp5150 controls
Browse files Browse the repository at this point in the history
Default values were wrong. Fixing it.

Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Mauro Carvalho Chehab committed Apr 2, 2006
1 parent 4263fa8 commit 75bc801
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/media/video/tvp5150.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ static struct v4l2_queryctrl tvp5150_qctrl[] = {
.minimum = 0,
.maximum = 255,
.step = 1,
.default_value = 0,
.default_value = 128,
.flags = 0,
}, {
.id = V4L2_CID_CONTRAST,
Expand All @@ -62,7 +62,7 @@ static struct v4l2_queryctrl tvp5150_qctrl[] = {
.minimum = 0,
.maximum = 255,
.step = 0x1,
.default_value = 0x10,
.default_value = 128,
.flags = 0,
}, {
.id = V4L2_CID_SATURATION,
Expand All @@ -71,7 +71,7 @@ static struct v4l2_queryctrl tvp5150_qctrl[] = {
.minimum = 0,
.maximum = 255,
.step = 0x1,
.default_value = 0x10,
.default_value = 128,
.flags = 0,
}, {
.id = V4L2_CID_HUE,
Expand All @@ -80,7 +80,7 @@ static struct v4l2_queryctrl tvp5150_qctrl[] = {
.minimum = -128,
.maximum = 127,
.step = 0x1,
.default_value = 0x10,
.default_value = 0,
.flags = 0,
}
};
Expand Down

0 comments on commit 75bc801

Please sign in to comment.