summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2009-04-02 01:22:26 +0200
committerHans Verkuil <hverkuil@xs4all.nl>2009-04-02 01:22:26 +0200
commit696781508adb89f4ff88ecc99c83092cc031dd7b (patch)
tree5b513ba0d83eae71f3a95b1b63a8c29cd855c57c
parent7d77b86dffee54dd3ca7ffde1588269026e4f8d9 (diff)
downloadmediapointer-dvb-s2-696781508adb89f4ff88ecc99c83092cc031dd7b.tar.gz
mediapointer-dvb-s2-696781508adb89f4ff88ecc99c83092cc031dd7b.tar.bz2
mxb: fix copy-and-paste bug in mute.
From: Hans Verkuil <hverkuil@xs4all.nl> The line-in was muted twice instead of the line-in and the cd-in. Priority: normal Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
-rw-r--r--linux/drivers/media/video/mxb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/mxb.c b/linux/drivers/media/video/mxb.c
index 14fb1afff..d593fec1c 100644
--- a/linux/drivers/media/video/mxb.c
+++ b/linux/drivers/media/video/mxb.c
@@ -302,8 +302,8 @@ static int mxb_init_done(struct saa7146_dev* dev)
/* mute audio on tea6420s */
tea6420_1_call(mxb, audio, s_routing, &TEA6420_line[6][0]);
tea6420_2_call(mxb, audio, s_routing, &TEA6420_line[6][1]);
- tea6420_1_call(mxb, audio, s_routing, &TEA6420_line[6][0]);
- tea6420_2_call(mxb, audio, s_routing, &TEA6420_line[6][1]);
+ tea6420_1_call(mxb, audio, s_routing, &TEA6420_cd[6][0]);
+ tea6420_2_call(mxb, audio, s_routing, &TEA6420_cd[6][1]);
/* switch to tuner-channel on tea6415c */
route.input = 3;