ASoC: hdmi: HDMI codec doesn't benefit from pmdown delay
authorJyri Sarha <jsarha@ti.com>
Tue, 14 Oct 2014 17:29:27 +0000 (20:29 +0300)
committerMark Brown <broonie@kernel.org>
Mon, 20 Oct 2014 11:20:26 +0000 (12:20 +0100)
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>
sound/soc/codecs/hdmi.c

index 2a52b90..1391ad5 100644 (file)
@@ -76,6 +76,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)