aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJyri Sarha <jsarha@ti.com>2014-10-14 13:29:27 -0400
committerMark Brown <broonie@kernel.org>2014-10-20 07:20:26 -0400
commit69434097916bc52a4d6d495a0d719eb02e0cff9e (patch)
treef8abae1589632a18bc054e5a570ac355a2953c81
parent74d813cf37c210e94d155b0c19598fe269b8f78c (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>
-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 2a52b9050371..1391ad50f95d 100644
--- a/sound/soc/codecs/hdmi.c
+++ b/sound/soc/codecs/hdmi.c
@@ -76,6 +76,7 @@ static struct snd_soc_codec_driver hdmi_codec = {
76 .num_dapm_widgets = ARRAY_SIZE(hdmi_widgets), 76 .num_dapm_widgets = ARRAY_SIZE(hdmi_widgets),
77 .dapm_routes = hdmi_routes, 77 .dapm_routes = hdmi_routes,
78 .num_dapm_routes = ARRAY_SIZE(hdmi_routes), 78 .num_dapm_routes = ARRAY_SIZE(hdmi_routes),
79 .ignore_pmdown_time = true,
79}; 80};
80 81
81static int hdmi_codec_probe(struct platform_device *pdev) 82static int hdmi_codec_probe(struct platform_device *pdev)