diff options
author | Devin Heitmueller <dheitmueller@kernellabs.com> | 2010-03-11 20:00:13 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-05-17 23:50:17 -0400 |
commit | f1a4f9eab2bac10d3145d75342eb372c0ef9f125 (patch) | |
tree | c4782782b78dd19938b93d302c076ea740cabc21 /drivers/media/video/saa7115.c | |
parent | 87a6fe4a530cc01081d19cdec4738433972fb0ee (diff) |
V4L/DVB: v4l2-common: add ability to use v4l2_ctrl_query_fill for chroma gain
Add the ability to use the v4l2_ctrl_query_fill() function for the newly
introduced chroma gain control.
Also, make use of the centralized function by the one caller.
This work was sponsored by EyeMagnet Limited.
Signed-off-by: Devin Heitmueller <dheitmueller@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/saa7115.c')
-rw-r--r-- | drivers/media/video/saa7115.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/drivers/media/video/saa7115.c b/drivers/media/video/saa7115.c index f96071c66055..72eaa662b66f 100644 --- a/drivers/media/video/saa7115.c +++ b/drivers/media/video/saa7115.c | |||
@@ -1234,16 +1234,7 @@ static int saa711x_queryctrl(struct v4l2_subdev *sd, struct v4l2_queryctrl *qc) | |||
1234 | case V4L2_CID_CHROMA_AGC: | 1234 | case V4L2_CID_CHROMA_AGC: |
1235 | return v4l2_ctrl_query_fill(qc, 0, 1, 1, 1); | 1235 | return v4l2_ctrl_query_fill(qc, 0, 1, 1, 1); |
1236 | case V4L2_CID_CHROMA_GAIN: | 1236 | case V4L2_CID_CHROMA_GAIN: |
1237 | qc->type = V4L2_CTRL_TYPE_INTEGER; | 1237 | return v4l2_ctrl_query_fill(qc, 0, 127, 1, 48); |
1238 | qc->flags = V4L2_CTRL_FLAG_SLIDER; | ||
1239 | qc->minimum = 0; | ||
1240 | qc->maximum = 127; | ||
1241 | qc->step = 1; | ||
1242 | qc->default_value = 0x30; | ||
1243 | qc->reserved[0] = 0; | ||
1244 | qc->reserved[1] = 0; | ||
1245 | strlcpy(qc->name, "chroma_gain", sizeof(qc->name)); | ||
1246 | return 0; | ||
1247 | default: | 1238 | default: |
1248 | return -EINVAL; | 1239 | return -EINVAL; |
1249 | } | 1240 | } |