Changeset 598 for GPL/trunk/alsa-kernel/pci/au88x0/au88x0_pcm.c
- Timestamp:
- Apr 3, 2017, 4:51:56 PM (8 years ago)
- Location:
- GPL/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk ¶
-
Property svn:mergeinfo
set to
/GPL/branches/uniaud32-2.1.x merged eligible
-
Property svn:mergeinfo
set to
-
TabularUnified GPL/trunk/alsa-kernel/pci/au88x0/au88x0_pcm.c ¶
r399 r598 43 43 .rate_max = 48000, 44 44 .channels_min = 1, 45 #ifdef CHIP_AU883046 .channels_max = 4,47 #else48 45 .channels_max = 2, 49 #endif50 46 .buffer_bytes_max = 0x10000, 51 47 .period_bytes_min = 0x1, … … 116 112 }; 117 113 #endif 114 #ifdef CHIP_AU8830 115 static unsigned int au8830_channels[3] = { 116 1, 2, 4, 117 }; 118 119 static struct snd_pcm_hw_constraint_list hw_constraints_au8830_channels = { 120 .count = ARRAY_SIZE(au8830_channels), 121 .list = au8830_channels, 122 .mask = 0, 123 }; 124 #endif 118 125 /* open callback */ 119 126 static int snd_vortex_pcm_open(struct snd_pcm_substream *substream) … … 157 164 || VORTEX_PCM_TYPE(substream->pcm) == VORTEX_PCM_I2S) 158 165 runtime->hw = snd_vortex_playback_hw_adb; 166 #ifdef CHIP_AU8830 167 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK && 168 VORTEX_PCM_TYPE(substream->pcm) == VORTEX_PCM_ADB) { 169 runtime->hw.channels_max = 4; 170 snd_pcm_hw_constraint_list(runtime, 0, 171 SNDRV_PCM_HW_PARAM_CHANNELS, 172 &hw_constraints_au8830_channels); 173 } 174 #endif 159 175 substream->runtime->private_data = NULL; 160 176 }
Note:
See TracChangeset
for help on using the changeset viewer.