msm_hdmi_codec_rx: lower min sample rate for DP_DAI1

Lower rate_min to 32kHz to support more clips of
different sample rate for DP use case.

Change-Id: Idab284ac0cfe9248ae417ba9c25e5154f0658d69
This commit is contained in:
Harold Tan
2021-09-02 22:32:05 -07:00
کامیت شده توسط Gerrit - the friendly Code Review server
والد 642659b2a3
کامیت 4ace4a9197

مشاهده پرونده

@@ -832,9 +832,9 @@ static struct snd_soc_dai_driver msm_ext_disp_audio_codec_rx_dais[] = {
.stream_name = "Display Port Playback",
.channels_min = 1,
.channels_max = 8,
.rate_min = 44100,
.rate_min = 32000,
.rate_max = 192000,
.rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_96000 |
.rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_96000 |
SNDRV_PCM_RATE_192000 | SNDRV_PCM_RATE_44100,
.formats = SNDRV_PCM_FMTBIT_S16_LE |
SNDRV_PCM_FMTBIT_S24_LE |