aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/omap/omap-hdmi-audio.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/omap/omap-hdmi-audio.c')
-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,
81 ret = snd_pcm_hw_constraint_step(substream->runtime, 0, 81 ret = snd_pcm_hw_constraint_step(substream->runtime, 0,
82 SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 128); 82 SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 128);
83 if (ret < 0) { 83 if (ret < 0) {
84 dev_err(dai->dev, "could not apply constraint\n"); 84 dev_err(dai->dev, "Could not apply period constraint: %d\n",
85 ret);
86 return ret;
87 }
88 ret = snd_pcm_hw_constraint_step(substream->runtime, 0,
89 SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 128);
90 if (ret < 0) {
91 dev_err(dai->dev, "Could not apply buffer constraint: %d\n",
92 ret);
85 return ret; 93 return ret;
86 } 94 }
87 95