diff options
Diffstat (limited to 'drivers/media/video/tda7432.c')
-rw-r--r-- | drivers/media/video/tda7432.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/media/video/tda7432.c b/drivers/media/video/tda7432.c index 2090e170bd9c..976ce207cfcb 100644 --- a/drivers/media/video/tda7432.c +++ b/drivers/media/video/tda7432.c | |||
@@ -421,12 +421,14 @@ static int tda7432_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl) | |||
421 | static int tda7432_queryctrl(struct v4l2_subdev *sd, struct v4l2_queryctrl *qc) | 421 | static int tda7432_queryctrl(struct v4l2_subdev *sd, struct v4l2_queryctrl *qc) |
422 | { | 422 | { |
423 | switch (qc->id) { | 423 | switch (qc->id) { |
424 | case V4L2_CID_AUDIO_MUTE: | ||
425 | case V4L2_CID_AUDIO_VOLUME: | 424 | case V4L2_CID_AUDIO_VOLUME: |
425 | return v4l2_ctrl_query_fill(qc, 0, 65535, 65535 / 100, 58880); | ||
426 | case V4L2_CID_AUDIO_MUTE: | ||
427 | return v4l2_ctrl_query_fill(qc, 0, 1, 1, 0); | ||
426 | case V4L2_CID_AUDIO_BALANCE: | 428 | case V4L2_CID_AUDIO_BALANCE: |
427 | case V4L2_CID_AUDIO_BASS: | 429 | case V4L2_CID_AUDIO_BASS: |
428 | case V4L2_CID_AUDIO_TREBLE: | 430 | case V4L2_CID_AUDIO_TREBLE: |
429 | return v4l2_ctrl_query_fill_std(qc); | 431 | return v4l2_ctrl_query_fill(qc, 0, 65535, 65535 / 100, 32768); |
430 | } | 432 | } |
431 | return -EINVAL; | 433 | return -EINVAL; |
432 | } | 434 | } |