aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/pci/cmipci.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sound/pci/cmipci.c b/sound/pci/cmipci.c
index c33c1c778693..51ba704d4bc9 100644
--- a/sound/pci/cmipci.c
+++ b/sound/pci/cmipci.c
@@ -1623,14 +1623,14 @@ static int snd_cmipci_playback2_open(struct snd_pcm_substream *substream)
1623 else if (cm->max_channels == 8) 1623 else if (cm->max_channels == 8)
1624 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels_8); 1624 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels_8);
1625 } 1625 }
1626 if (cm->chip_version == 68) {
1627 runtime->hw.rates |= SNDRV_PCM_RATE_88200 |
1628 SNDRV_PCM_RATE_96000;
1629 runtime->hw.rate_max = 96000;
1630 }
1631 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x10000);
1632 } 1626 }
1633 mutex_unlock(&cm->open_mutex); 1627 mutex_unlock(&cm->open_mutex);
1628 if (cm->chip_version == 68) {
1629 runtime->hw.rates |= SNDRV_PCM_RATE_88200 |
1630 SNDRV_PCM_RATE_96000;
1631 runtime->hw.rate_max = 96000;
1632 }
1633 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x10000);
1634 return 0; 1634 return 0;
1635} 1635}
1636 1636