summaryrefslogtreecommitdiffstats
path: root/sound/soc/stm/stm32_i2s.c
diff options
context:
space:
mode:
authorMark Brown2019-05-20 12:53:50 +0200
committerMark Brown2019-05-20 12:53:50 +0200
commit1c7c3237c0cc4ad3c7b0df458290c8e2a652f178 (patch)
treed5d027d4dbdae390c736a82e16c57966214e2c0a /sound/soc/stm/stm32_i2s.c
parentASoC: tlv320aic3x: Add support for high power analog output (diff)
parentLinux 5.2-rc1 (diff)
downloadkernel-qcow2-linux-1c7c3237c0cc4ad3c7b0df458290c8e2a652f178.tar.gz
kernel-qcow2-linux-1c7c3237c0cc4ad3c7b0df458290c8e2a652f178.tar.xz
kernel-qcow2-linux-1c7c3237c0cc4ad3c7b0df458290c8e2a652f178.zip
Merge tag 'v5.2-rc1' into asoc-5.3
Linux 5.2-rc1
Diffstat (limited to 'sound/soc/stm/stm32_i2s.c')
-rw-r--r--sound/soc/stm/stm32_i2s.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/stm/stm32_i2s.c b/sound/soc/stm/stm32_i2s.c
index 9755c49ae7dc..8846f49b2951 100644
--- a/sound/soc/stm/stm32_i2s.c
+++ b/sound/soc/stm/stm32_i2s.c
@@ -758,7 +758,8 @@ static const struct snd_soc_dai_ops stm32_i2s_pcm_dai_ops = {
static const struct snd_pcm_hardware stm32_i2s_pcm_hw = {
.info = SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_MMAP,
.buffer_bytes_max = 8 * PAGE_SIZE,
- .period_bytes_max = 2048,
+ .period_bytes_min = 1024,
+ .period_bytes_max = 4 * PAGE_SIZE,
.periods_min = 2,
.periods_max = 8,
};