diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-08-15 15:02:28 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-08-30 08:46:09 +0200 |
commit | 16d3f140fc265c9b9c0f8975e0b36fe15912508f (patch) | |
tree | 4f1a8c3e3ab7626112cf27439ad38a2ad747cca4 | |
parent | b27113102f576092cd8f5d6ce8365aa6e2f58134 (diff) | |
download | linux-3.10-16d3f140fc265c9b9c0f8975e0b36fe15912508f.tar.gz linux-3.10-16d3f140fc265c9b9c0f8975e0b36fe15912508f.tar.bz2 linux-3.10-16d3f140fc265c9b9c0f8975e0b36fe15912508f.zip |
[ALSA] via82xx - Fix SPDIF sample rates
VIA82xx driver
Fixed the sample rates set in the fourth DXS channel with Non-VRA mode.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/pci/via82xx.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/pci/via82xx.c b/sound/pci/via82xx.c index 38b96eabea6..819f27b2762 100644 --- a/sound/pci/via82xx.c +++ b/sound/pci/via82xx.c @@ -929,12 +929,12 @@ static int snd_via8233_playback_prepare(snd_pcm_substream_t *substream) if ((rate_changed = via_lock_rate(&chip->rates[0], ac97_rate)) < 0) return rate_changed; - if (rate_changed) { + if (rate_changed) snd_ac97_set_rate(chip->ac97, AC97_PCM_FRONT_DAC_RATE, chip->no_vra ? 48000 : runtime->rate); - snd_ac97_set_rate(chip->ac97, AC97_SPDIF, - chip->no_vra ? 48000 : runtime->rate); - } + if (chip->spdif_on && viadev->reg_offset == 0x30) + snd_ac97_set_rate(chip->ac97, AC97_SPDIF, runtime->rate); + if (runtime->rate == 48000) rbits = 0xfffff; else |