From 0d76096354a58608707e9f82ebf5f5816dccff8b Mon Sep 17 00:00:00 2001 From: Kevin Kim Date: Tue, 11 Sep 2018 16:18:45 +0900 Subject: [PATCH] ODROID-COMMON: sound/soc: support up to 384KHz sample rate. Change-Id: Iad8a1337637b5f09d444c632935a1326123a04d8 --- sound/soc/amlogic/auge/tdm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/amlogic/auge/tdm.c b/sound/soc/amlogic/auge/tdm.c index 6bb974c0c6cb..7624558888b7 100644 --- a/sound/soc/amlogic/auge/tdm.c +++ b/sound/soc/amlogic/auge/tdm.c @@ -130,7 +130,7 @@ static const struct snd_pcm_hardware aml_tdm_hardware = { SNDRV_PCM_FMTBIT_S32_LE, .period_bytes_min = 64, - .period_bytes_max = 256 * 1024, + .period_bytes_max = 256 * 1024 * 2, .periods_min = 2, .periods_max = 1024, .buffer_bytes_max = 1024 * 1024,