Commit 48c43d23 authored by Axel Lin's avatar Axel Lin Committed by Luis Henriques

[media] tda7432: Fix setting TDA7432_MUTE bit for TDA7432_RF register

commit 91ba0e59 upstream.

Fix a copy-paste bug when converting to the control framework.

Fixes: commit 5d478e0d ("[media] tda7432: convert to the control framework")
Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
Signed-off-by: default avatarLuis Henriques <luis.henriques@canonical.com>
parent e8df0d9f
......@@ -293,7 +293,7 @@ static int tda7432_s_ctrl(struct v4l2_ctrl *ctrl)
if (t->mute->val) {
lf |= TDA7432_MUTE;
lr |= TDA7432_MUTE;
lf |= TDA7432_MUTE;
rf |= TDA7432_MUTE;
rr |= TDA7432_MUTE;
}
/* Mute & update balance*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment