Ignore:
Timestamp:
Apr 3, 2017, 4:51:56 PM (8 years ago)
Author:
David Azarewicz
Message:

Merged/reintegrated v2 branch into trunk. Trunk is now v2

Location:
GPL/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk

  • TabularUnified GPL/trunk/alsa-kernel/pci/au88x0/au88x0_pcm.c

    r399 r598  
    4343        .rate_max = 48000,
    4444        .channels_min = 1,
    45 #ifdef CHIP_AU8830
    46         .channels_max = 4,
    47 #else
    4845        .channels_max = 2,
    49 #endif
    5046        .buffer_bytes_max = 0x10000,
    5147        .period_bytes_min = 0x1,
     
    116112};
    117113#endif
     114#ifdef CHIP_AU8830
     115static unsigned int au8830_channels[3] = {
     116        1, 2, 4,
     117};
     118
     119static 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
    118125/* open callback */
    119126static int snd_vortex_pcm_open(struct snd_pcm_substream *substream)
     
    157164                    || VORTEX_PCM_TYPE(substream->pcm) == VORTEX_PCM_I2S)
    158165                        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
    159175                substream->runtime->private_data = NULL;
    160176        }
Note: See TracChangeset for help on using the changeset viewer.