diff options
Diffstat (limited to 'sound/pci/oxygen/oxygen_pcm.c')
-rw-r--r-- | sound/pci/oxygen/oxygen_pcm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/pci/oxygen/oxygen_pcm.c b/sound/pci/oxygen/oxygen_pcm.c index 272ef08f0a2..2785660957d 100644 --- a/sound/pci/oxygen/oxygen_pcm.c +++ b/sound/pci/oxygen/oxygen_pcm.c | |||
@@ -119,6 +119,11 @@ static int oxygen_open(struct snd_pcm_substream *substream, | |||
119 | 119 | ||
120 | runtime->private_data = (void *)(uintptr_t)channel; | 120 | runtime->private_data = (void *)(uintptr_t)channel; |
121 | runtime->hw = *oxygen_hardware[channel]; | 121 | runtime->hw = *oxygen_hardware[channel]; |
122 | if (channel == PCM_C) { | ||
123 | runtime->hw.rates &= ~(SNDRV_PCM_RATE_32000 | | ||
124 | SNDRV_PCM_RATE_64000); | ||
125 | runtime->hw.rate_min = 44100; | ||
126 | } | ||
122 | if (chip->model->pcm_hardware_filter) | 127 | if (chip->model->pcm_hardware_filter) |
123 | chip->model->pcm_hardware_filter(channel, &runtime->hw); | 128 | chip->model->pcm_hardware_filter(channel, &runtime->hw); |
124 | err = snd_pcm_hw_constraint_step(runtime, 0, | 129 | err = snd_pcm_hw_constraint_step(runtime, 0, |