aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/ymfpci
diff options
context:
space:
mode:
Diffstat (limited to 'sound/pci/ymfpci')
-rw-r--r--sound/pci/ymfpci/ymfpci_main.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/sound/pci/ymfpci/ymfpci_main.c b/sound/pci/ymfpci/ymfpci_main.c
index a1aa74b79b3d..30ee53adb494 100644
--- a/sound/pci/ymfpci/ymfpci_main.c
+++ b/sound/pci/ymfpci/ymfpci_main.c
@@ -536,13 +536,17 @@ static void snd_ymfpci_pcm_init_voice(struct snd_ymfpci_pcm *ypcm, unsigned int
536 } 536 }
537 } 537 }
538 if (ypcm->output_rear) { 538 if (ypcm->output_rear) {
539 /* The SPDIF out channels seem to be swapped, so we have
540 * to swap them here, too. The rear analog out channels
541 * will be wrong, but otherwise AC3 would not work.
542 */
539 if (use_left) { 543 if (use_left) {
540 bank->eff2_gain = 544 bank->eff3_gain =
541 bank->eff2_gain_end = vol_left; 545 bank->eff3_gain_end = vol_left;
542 } 546 }
543 if (use_right) { 547 if (use_right) {
544 bank->eff3_gain = 548 bank->eff2_gain =
545 bank->eff3_gain_end = vol_right; 549 bank->eff2_gain_end = vol_right;
546 } 550 }
547 } 551 }
548 } 552 }