aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/davinci
diff options
context:
space:
mode:
authorTroy Kisky <troy.kisky@boundarydevices.com>2009-08-06 19:55:32 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2009-08-07 06:38:29 -0400
commit6a90d536feeccb2c84a2831252b1ed4642684da3 (patch)
tree905efb7119d18da62350bf797d6399191a316276 /sound/soc/davinci
parent9bb74150561bb337b49192a8f8e8f812057b88ea (diff)
ASoC: DaVinci: pcm, constrain buffer size to multiple of period
The dma setup code assumes that the buffer size is a multiple of the period size. Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/davinci')
-rw-r--r--sound/soc/davinci/davinci-pcm.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/soc/davinci/davinci-pcm.c b/sound/soc/davinci/davinci-pcm.c
index 8fd0c3cdc710..ab43a539c11d 100644
--- a/sound/soc/davinci/davinci-pcm.c
+++ b/sound/soc/davinci/davinci-pcm.c
@@ -244,6 +244,11 @@ static int davinci_pcm_open(struct snd_pcm_substream *substream)
244 int ret = 0; 244 int ret = 0;
245 245
246 snd_soc_set_runtime_hwparams(substream, &davinci_pcm_hardware); 246 snd_soc_set_runtime_hwparams(substream, &davinci_pcm_hardware);
247 /* ensure that buffer size is a multiple of period size */
248 ret = snd_pcm_hw_constraint_integer(runtime,
249 SNDRV_PCM_HW_PARAM_PERIODS);
250 if (ret < 0)
251 return ret;
247 252
248 prtd = kzalloc(sizeof(struct davinci_runtime_data), GFP_KERNEL); 253 prtd = kzalloc(sizeof(struct davinci_runtime_data), GFP_KERNEL);
249 if (prtd == NULL) 254 if (prtd == NULL)