aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sound/soc/omap
diff options
context:
space:
mode:
authorJyri Sarha <jsarha@ti.com>2015-08-26 16:11:40 +0300
committerMark Brown <broonie@kernel.org>2015-08-26 18:54:04 +0100
commit7d40acc38be55abb095f517e4e3a634818bc5253 (patch)
tree2e86c6898972a30e66fe3e39f06a9f0c1f01456f /sound/soc/omap
parentASoC: omap-mcbsp: Convert to use devm_ioremap_resource (diff)
downloadwireguard-linux-7d40acc38be55abb095f517e4e3a634818bc5253.tar.xz
wireguard-linux-7d40acc38be55abb095f517e4e3a634818bc5253.zip
ASoC: omap-hdmi-audio: Set buffer bytes step constraint to 128
Set buffer bytes step constraint to 128. A matching constraint has already been set to period size. This helps PCM setup to tolerate ALSA clients that set the PCM hw params in unusual order. Signed-off-by: Jyri Sarha <jsarha@ti.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/omap')
-rw-r--r--sound/soc/omap/omap-hdmi-audio.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/sound/soc/omap/omap-hdmi-audio.c b/sound/soc/omap/omap-hdmi-audio.c
index aeef25c0cb3d..584b2372339e 100644
--- a/sound/soc/omap/omap-hdmi-audio.c
+++ b/sound/soc/omap/omap-hdmi-audio.c
@@ -81,7 +81,15 @@ static int hdmi_dai_startup(struct snd_pcm_substream *substream,
ret = snd_pcm_hw_constraint_step(substream->runtime, 0,
SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 128);
if (ret < 0) {
- dev_err(dai->dev, "could not apply constraint\n");
+ dev_err(dai->dev, "Could not apply period constraint: %d\n",
+ ret);
+ return ret;
+ }
+ ret = snd_pcm_hw_constraint_step(substream->runtime, 0,
+ SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 128);
+ if (ret < 0) {
+ dev_err(dai->dev, "Could not apply buffer constraint: %d\n",
+ ret);
return ret;
}