diff options
author | Takashi Iwai <tiwai@suse.de> | 2019-05-09 08:13:40 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2019-05-09 08:13:40 +0300 |
commit | ed97c988bdc61ab6fb5d1f5f02a709844557b68f (patch) | |
tree | 9eb2087f95a6e319c44cf7f4f1bcd9ab723651d1 /sound/soc/stm | |
parent | 7f84ff68be05ec7a5d2acf8fdc734fe5897af48f (diff) | |
parent | 7f6647ced298d56027218e47619b7f0d925fc83e (diff) | |
download | linux-ed97c988bdc61ab6fb5d1f5f02a709844557b68f.tar.xz |
Merge tag 'asoc-v5.2-5' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v5.2
A bunch of driver specific fixes that came in since the initial pull
request for v5.2, mainly warning fixes for the newly added Sound Open
Firmware code which people appeared to only start looking at after I'd
sent the pull request.
Diffstat (limited to 'sound/soc/stm')
-rw-r--r-- | sound/soc/stm/stm32_i2s.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/stm/stm32_i2s.c b/sound/soc/stm/stm32_i2s.c index 97d5e9901a0e..8ee697ff1f86 100644 --- a/sound/soc/stm/stm32_i2s.c +++ b/sound/soc/stm/stm32_i2s.c @@ -731,7 +731,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, }; |