summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorOlivier Moysan <olivier.moysan@foss.st.com>2024-11-14 11:28:51 +0100
committerMark Brown <broonie@kernel.org>2024-11-14 11:42:42 +0000
commitba888450828befb0607219f34c03aa8645625447 (patch)
tree9707f01cd86aa42c0b958dc125a5eea510d1ed26 /sound
parentc48a4497356f701f94f1951626637ae240af909e (diff)
downloadlinux-ba888450828befb0607219f34c03aa8645625447.tar.gz
linux-ba888450828befb0607219f34c03aa8645625447.tar.bz2
linux-ba888450828befb0607219f34c03aa8645625447.zip
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>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/stm/stm32_adfsdm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/stm/stm32_adfsdm.c b/sound/soc/stm/stm32_adfsdm.c
index 78bd817af839..c914d1c46850 100644
--- a/sound/soc/stm/stm32_adfsdm.c
+++ b/sound/soc/stm/stm32_adfsdm.c
@@ -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,
};