[alsa-devel] [PATCH] ASoC: mxs-pcm: Fix fifo size
31 Oct
2012
31 Oct
'12
6:02 p.m.
From: Fabio Estevam fabio.estevam@freescale.com
According to MX28 Reference Manual the SAIF FIFO contains 4-bytes.
Signed-off-by: Fabio Estevam fabio.estevam@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
4435
Age (days ago)
4435
Last active (days ago)
0 comments
1 participants
participants (1)
-
Fabio Estevam