diff options
author | 2008-01-18 09:18:32 +0100 | |
---|---|---|
committer | 2008-01-31 17:30:04 +0100 | |
commit | e0059549345903195d6eb796c22048204c40a785 (patch) | |
tree | 42ad0eda51c80842101c2223fb307f6ffe0e5c2e /sound/pci/oxygen/oxygen_lib.c | |
parent | [ALSA] oxygen: add register definitions (diff) | |
download | linux-dev-e0059549345903195d6eb796c22048204c40a785.tar.xz linux-dev-e0059549345903195d6eb796c22048204c40a785.zip |
[ALSA] oxygen: fix playback routing
The default playback routing must be 0xe4, not 0xe1; the front and
surround DACs were exchanged.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to 'sound/pci/oxygen/oxygen_lib.c')
-rw-r--r-- | sound/pci/oxygen/oxygen_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/oxygen/oxygen_lib.c b/sound/pci/oxygen/oxygen_lib.c index 79e7c16c71ff..3e61f94ec2e3 100644 --- a/sound/pci/oxygen/oxygen_lib.c +++ b/sound/pci/oxygen/oxygen_lib.c @@ -214,7 +214,7 @@ static void __devinit oxygen_init(struct oxygen *chip) oxygen_write16(chip, OXYGEN_I2S_C_FORMAT, 0x010a); oxygen_set_bits32(chip, OXYGEN_SPDIF_CONTROL, OXYGEN_SPDIF_RATE_MASK); oxygen_write32(chip, OXYGEN_SPDIF_OUTPUT_BITS, chip->spdif_bits); - oxygen_write16(chip, OXYGEN_PLAY_ROUTING, 0xe100); + oxygen_write16(chip, OXYGEN_PLAY_ROUTING, 0xe400); oxygen_write8(chip, OXYGEN_REC_ROUTING, 0x10); oxygen_write8(chip, OXYGEN_ADC_MONITOR, 0x00); oxygen_write8(chip, OXYGEN_A_MONITOR_ROUTING, 0xe4); |