summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorJyri Sarha <jsarha@ti.com>2014-10-14 20:29:27 +0300
committerNitin Garg <nitin.garg@freescale.com>2015-09-17 09:20:20 -0500
commitbd67961765a93e7910e58eac5c06c5517e03c931 (patch)
tree31be6578f4bb1e9de9c9b8c4aeaad74ed5a04f2d /sound
parentdb60082199ba4dc1e65e5873bb8160c2adf59a4f (diff)
ASoC: hdmi: HDMI codec doesn't benefit from pmdown delay
Adds .ignore_pmdown_time = true to codec driver struct. HDMI codec is currently a dummy codec and doesn't benefit from pmdown delay. Even if in the future the codec would controll HDMI encoder, it would still be a digital to digital interface that should have no need for pmdown delay. Signed-off-by: Jyri Sarha <jsarha@ti.com> Signed-off-by: Mark Brown <broonie@kernel.org> (cherry picked from commit 69434097916bc52a4d6d495a0d719eb02e0cff9e)
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/hdmi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/hdmi.c b/sound/soc/codecs/hdmi.c
index 5e8c69aabfdd..124f32edf482 100644
--- a/sound/soc/codecs/hdmi.c
+++ b/sound/soc/codecs/hdmi.c
@@ -75,6 +75,7 @@ static struct snd_soc_codec_driver hdmi_codec = {
.num_dapm_widgets = ARRAY_SIZE(hdmi_widgets),
.dapm_routes = hdmi_routes,
.num_dapm_routes = ARRAY_SIZE(hdmi_routes),
+ .ignore_pmdown_time = true,
};
static int hdmi_codec_probe(struct platform_device *pdev)