diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-02-21 16:47:24 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-30 11:42:54 -0400 |
commit | 10afbef15e7bba5e1008f583852077743d28c395 (patch) | |
tree | 73dbfe2a3ccde6ef75c3403fb189274247740003 /drivers/media/video/msp3400-driver.c | |
parent | 1df795370c1392a026c63816368108187aec2ec1 (diff) |
V4L/DVB (10698): v4l2-common: remove v4l2_ctrl_query_fill_std
The v4l2_ctrl_query_fill_std() function wasn't one the best idea I ever had.
It doesn't add anything valuable that cannot be expressed equally well with
v4l2_ctrl_query_fill and only adds overhead.
Replace it with v4l2_ctrl_query_fill() everywhere it is used and remove it
from v4l2_common.c.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/msp3400-driver.c')
-rw-r--r-- | drivers/media/video/msp3400-driver.c | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/drivers/media/video/msp3400-driver.c b/drivers/media/video/msp3400-driver.c index 4d7a91852117..d972828d1cbe 100644 --- a/drivers/media/video/msp3400-driver.c +++ b/drivers/media/video/msp3400-driver.c | |||
@@ -713,22 +713,24 @@ static int msp_queryctrl(struct v4l2_subdev *sd, struct v4l2_queryctrl *qc) | |||
713 | struct msp_state *state = to_state(sd); | 713 | struct msp_state *state = to_state(sd); |
714 | 714 | ||
715 | switch (qc->id) { | 715 | switch (qc->id) { |
716 | case V4L2_CID_AUDIO_VOLUME: | 716 | case V4L2_CID_AUDIO_VOLUME: |
717 | case V4L2_CID_AUDIO_MUTE: | 717 | return v4l2_ctrl_query_fill(qc, 0, 65535, 65535 / 100, 58880); |
718 | return v4l2_ctrl_query_fill_std(qc); | 718 | case V4L2_CID_AUDIO_MUTE: |
719 | default: | 719 | return v4l2_ctrl_query_fill(qc, 0, 1, 1, 0); |
720 | break; | 720 | default: |
721 | break; | ||
721 | } | 722 | } |
722 | if (!state->has_sound_processing) | 723 | if (!state->has_sound_processing) |
723 | return -EINVAL; | 724 | return -EINVAL; |
724 | switch (qc->id) { | 725 | switch (qc->id) { |
725 | case V4L2_CID_AUDIO_LOUDNESS: | 726 | case V4L2_CID_AUDIO_LOUDNESS: |
726 | case V4L2_CID_AUDIO_BALANCE: | 727 | return v4l2_ctrl_query_fill(qc, 0, 1, 1, 0); |
727 | case V4L2_CID_AUDIO_BASS: | 728 | case V4L2_CID_AUDIO_BALANCE: |
728 | case V4L2_CID_AUDIO_TREBLE: | 729 | case V4L2_CID_AUDIO_BASS: |
729 | return v4l2_ctrl_query_fill_std(qc); | 730 | case V4L2_CID_AUDIO_TREBLE: |
730 | default: | 731 | return v4l2_ctrl_query_fill(qc, 0, 65535, 65535 / 100, 32768); |
731 | return -EINVAL; | 732 | default: |
733 | return -EINVAL; | ||
732 | } | 734 | } |
733 | return 0; | 735 | return 0; |
734 | } | 736 | } |