aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2010-04-14 03:17:31 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2010-04-14 21:29:49 -0400
commit565a79f74af96ae90dfec411da14dc38d2cd56bc (patch)
tree7b4fa0419f27fd8ce25eca39241df668df0fc26c /sound
parent43a3cec01354573517f1348383e0ab6e6067076b (diff)
ASoC: imx-ssi: increase minimum periods to 4
Currently the notification of elapsed periods is not very exact. Increase minimum periods to 4 as suggested by Liam Girdwood. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/imx/imx-pcm-fiq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/imx/imx-pcm-fiq.c b/sound/soc/imx/imx-pcm-fiq.c
index 64df813b9af8..98ab33109527 100644
--- a/sound/soc/imx/imx-pcm-fiq.c
+++ b/sound/soc/imx/imx-pcm-fiq.c
@@ -174,7 +174,7 @@ static struct snd_pcm_hardware snd_imx_hardware = {
174 .buffer_bytes_max = IMX_SSI_DMABUF_SIZE, 174 .buffer_bytes_max = IMX_SSI_DMABUF_SIZE,
175 .period_bytes_min = 128, 175 .period_bytes_min = 128,
176 .period_bytes_max = 16 * 1024, 176 .period_bytes_max = 16 * 1024,
177 .periods_min = 2, 177 .periods_min = 4,
178 .periods_max = 255, 178 .periods_max = 255,
179 .fifo_size = 0, 179 .fifo_size = 0,
180}; 180};