> Search for the function "saa7134_tvaudio_do_mute_input" and then look > for the switch statement: > > /* switch internal audio mux */ > switch (in->amux) { > case TV: reg = 0x02; break; > case LINE1: reg = 0x00; break; > case LINE2: reg = 0x01; break; > } > > Change this as follows: > > > /* switch internal audio mux */ > switch (in->amux) { > case TV: reg = 0x01; break; > case LINE1: reg = 0x00; break; > case LINE2: reg = 0x01; break; > } Wrong fix. If you want to do that then go to saa7134-cards.c and change it there. Neverless this is just a workaround. It gives you mono sound from the tuner chip, it doesn't fix the "saa7134 tv audio decoding not working" bug. Gerd -- You can't please everybody. And usually if you _try_ to please everybody, the end result is one big mess. -- Linus Torvalds, 2002-04-20