diff options
author | Jyri Sarha <jsarha@ti.com> | 2014-10-14 20:29:27 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-10-20 12:20:26 +0100 |
commit | 69434097916bc52a4d6d495a0d719eb02e0cff9e (patch) | |
tree | f8abae1589632a18bc054e5a570ac355a2953c81 | |
parent | 74d813cf37c210e94d155b0c19598fe269b8f78c (diff) | |
download | op-kernel-dev-69434097916bc52a4d6d495a0d719eb02e0cff9e.zip op-kernel-dev-69434097916bc52a4d6d495a0d719eb02e0cff9e.tar.gz |
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.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/hdmi.c b/sound/soc/codecs/hdmi.c index 2a52b90..1391ad5 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 = { .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) |