diff options
-rw-r--r-- | sound/soc/intel/boards/skl_nau88l25_max98357a.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sound/soc/intel/boards/skl_nau88l25_max98357a.c b/sound/soc/intel/boards/skl_nau88l25_max98357a.c index d2808652b974..fc3f4750c432 100644 --- a/sound/soc/intel/boards/skl_nau88l25_max98357a.c +++ b/sound/soc/intel/boards/skl_nau88l25_max98357a.c | |||
@@ -382,8 +382,22 @@ static struct snd_pcm_hw_constraint_list constraints_16000 = { | |||
382 | .list = rates_16000, | 382 | .list = rates_16000, |
383 | }; | 383 | }; |
384 | 384 | ||
385 | static const unsigned int ch_mono[] = { | ||
386 | 1, | ||
387 | }; | ||
388 | |||
389 | static const struct snd_pcm_hw_constraint_list constraints_refcap = { | ||
390 | .count = ARRAY_SIZE(ch_mono), | ||
391 | .list = ch_mono, | ||
392 | }; | ||
393 | |||
385 | static int skylake_refcap_startup(struct snd_pcm_substream *substream) | 394 | static int skylake_refcap_startup(struct snd_pcm_substream *substream) |
386 | { | 395 | { |
396 | substream->runtime->hw.channels_max = 1; | ||
397 | snd_pcm_hw_constraint_list(substream->runtime, 0, | ||
398 | SNDRV_PCM_HW_PARAM_CHANNELS, | ||
399 | &constraints_refcap); | ||
400 | |||
387 | return snd_pcm_hw_constraint_list(substream->runtime, 0, | 401 | return snd_pcm_hw_constraint_list(substream->runtime, 0, |
388 | SNDRV_PCM_HW_PARAM_RATE, | 402 | SNDRV_PCM_HW_PARAM_RATE, |
389 | &constraints_16000); | 403 | &constraints_16000); |