]> Pileus Git - ~andy/linux/commitdiff
[media] bttv: audio_mux(): do not change the value of the v4l2 mute control
authorFrank Schaefer <fschaefer.oss@googlemail.com>
Thu, 21 Mar 2013 16:51:14 +0000 (13:51 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Sat, 23 Mar 2013 14:30:21 +0000 (11:30 -0300)
There are cases where we want to call audio_mux() without changing the value of
the v4l2 mute control, for example
- mute mute on last close
- mute on device probing

Signed-off-by: Frank Schäfer <fschaefer.oss@googlemail.com>
Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/pci/bt8xx/bttv-driver.c

index a584d82ab90900d6d0d95e1b20360a9a0db4e6ab..a082ab4efff857796f22041e3d40049315117d00 100644 (file)
@@ -999,7 +999,6 @@ audio_mux(struct bttv *btv, int input, int mute)
                   bttv_tvcards[btv->c.type].gpiomask);
        signal = btread(BT848_DSTATUS) & BT848_DSTATUS_HLOC;
 
-       btv->mute = mute;
        btv->audio = input;
 
        /* automute */
@@ -1031,7 +1030,7 @@ audio_mux(struct bttv *btv, int input, int mute)
 
                ctrl = v4l2_ctrl_find(btv->sd_msp34xx->ctrl_handler, V4L2_CID_AUDIO_MUTE);
                if (ctrl)
-                       v4l2_ctrl_s_ctrl(ctrl, btv->mute);
+                       v4l2_ctrl_s_ctrl(ctrl, mute);
 
                /* Note: the inputs tuner/radio/extern/intern are translated
                   to msp routings. This assumes common behavior for all msp3400
@@ -1080,7 +1079,7 @@ audio_mux(struct bttv *btv, int input, int mute)
                ctrl = v4l2_ctrl_find(btv->sd_tvaudio->ctrl_handler, V4L2_CID_AUDIO_MUTE);
 
                if (ctrl)
-                       v4l2_ctrl_s_ctrl(ctrl, btv->mute);
+                       v4l2_ctrl_s_ctrl(ctrl, mute);
                v4l2_subdev_call(btv->sd_tvaudio, audio, s_routing,
                                input, 0, 0);
        }
@@ -1088,7 +1087,7 @@ audio_mux(struct bttv *btv, int input, int mute)
                ctrl = v4l2_ctrl_find(btv->sd_tda7432->ctrl_handler, V4L2_CID_AUDIO_MUTE);
 
                if (ctrl)
-                       v4l2_ctrl_s_ctrl(ctrl, btv->mute);
+                       v4l2_ctrl_s_ctrl(ctrl, mute);
        }
        return 0;
 }
@@ -1300,6 +1299,7 @@ static int bttv_s_ctrl(struct v4l2_ctrl *c)
                break;
        case V4L2_CID_AUDIO_MUTE:
                audio_mute(btv, c->val);
+               btv->mute = c->val;
                break;
        case V4L2_CID_AUDIO_VOLUME:
                btv->volume_gpio(btv, c->val);