diff options
Diffstat (limited to 'sound/pci/cs5535audio/cs5535audio_pcm.c')
-rw-r--r-- | sound/pci/cs5535audio/cs5535audio_pcm.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/pci/cs5535audio/cs5535audio_pcm.c b/sound/pci/cs5535audio/cs5535audio_pcm.c index 499e27961a30..cdcda87116c3 100644 --- a/sound/pci/cs5535audio/cs5535audio_pcm.c +++ b/sound/pci/cs5535audio/cs5535audio_pcm.c | |||
@@ -97,6 +97,8 @@ static int snd_cs5535audio_playback_open(struct snd_pcm_substream *substream) | |||
97 | struct snd_pcm_runtime *runtime = substream->runtime; | 97 | struct snd_pcm_runtime *runtime = substream->runtime; |
98 | 98 | ||
99 | runtime->hw = snd_cs5535audio_playback; | 99 | runtime->hw = snd_cs5535audio_playback; |
100 | runtime->hw.rates = cs5535au->ac97->rates[AC97_RATES_FRONT_DAC]; | ||
101 | snd_pcm_limit_hw_rates(runtime); | ||
100 | cs5535au->playback_substream = substream; | 102 | cs5535au->playback_substream = substream; |
101 | runtime->private_data = &(cs5535au->dmas[CS5535AUDIO_DMA_PLAYBACK]); | 103 | runtime->private_data = &(cs5535au->dmas[CS5535AUDIO_DMA_PLAYBACK]); |
102 | if ((err = snd_pcm_hw_constraint_integer(runtime, | 104 | if ((err = snd_pcm_hw_constraint_integer(runtime, |
@@ -342,6 +344,8 @@ static int snd_cs5535audio_capture_open(struct snd_pcm_substream *substream) | |||
342 | struct snd_pcm_runtime *runtime = substream->runtime; | 344 | struct snd_pcm_runtime *runtime = substream->runtime; |
343 | 345 | ||
344 | runtime->hw = snd_cs5535audio_capture; | 346 | runtime->hw = snd_cs5535audio_capture; |
347 | runtime->hw.rates = cs5535au->ac97->rates[AC97_RATES_ADC]; | ||
348 | snd_pcm_limit_hw_rates(runtime); | ||
345 | cs5535au->capture_substream = substream; | 349 | cs5535au->capture_substream = substream; |
346 | runtime->private_data = &(cs5535au->dmas[CS5535AUDIO_DMA_CAPTURE]); | 350 | runtime->private_data = &(cs5535au->dmas[CS5535AUDIO_DMA_CAPTURE]); |
347 | if ((err = snd_pcm_hw_constraint_integer(runtime, | 351 | if ((err = snd_pcm_hw_constraint_integer(runtime, |