ASoC: stm32: dfsdm: change rate upper limits

Increase rate upper limit to 192kHz to reflect the rate range actually
supported by the STM32 DFSDM peripheral.

Signed-off-by: Olivier Moysan <olivier.moysan@foss.st.com>
Link: https://patch.msgid.link/20241114102851.2497942-1-olivier.moysan@foss.st.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Olivier Moysan 2024-11-14 11:28:51 +01:00 committed by Mark Brown
parent c48a449735
commit ba88845082
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0

View File

@ -142,7 +142,7 @@ static const struct snd_soc_dai_driver stm32_adfsdm_dai = {
SNDRV_PCM_FMTBIT_S32_LE,
.rates = SNDRV_PCM_RATE_CONTINUOUS,
.rate_min = 8000,
.rate_max = 48000,
.rate_max = 192000,
},
.ops = &stm32_adfsdm_dai_ops,
};