[alsa-devel] [PATCH] ASoC: mxs-pcm: Fix fifo size
Fabio Estevam
festevam at gmail.com
Wed Oct 31 18:02:49 CET 2012
From: Fabio Estevam <fabio.estevam at freescale.com>
According to MX28 Reference Manual the SAIF FIFO contains 4-bytes.
Signed-off-by: Fabio Estevam <fabio.estevam at freescale.com>
---
sound/soc/mxs/mxs-pcm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/mxs/mxs-pcm.c b/sound/soc/mxs/mxs-pcm.c
index f82d766..6b360d0 100644
--- a/sound/soc/mxs/mxs-pcm.c
+++ b/sound/soc/mxs/mxs-pcm.c
@@ -60,7 +60,7 @@ static struct snd_pcm_hardware snd_mxs_hardware = {
.periods_min = 1,
.periods_max = 52,
.buffer_bytes_max = 64 * 1024,
- .fifo_size = 32,
+ .fifo_size = 4,
};
--
1.7.9.5
More information about the Alsa-devel
mailing list