From f56e7c21eb23b2b49d7c02d3bd57332c9b64caa3 Mon Sep 17 00:00:00 2001 From: Kai-Heng Feng Date: Wed, 18 Nov 2020 00:54:29 +0800 Subject: [PATCH] ALSA: hda: Reinstate runtime_allow() for all hda controllers BugLink: https://bugs.launchpad.net/bugs/1904595 The broken jack detection should be fixed by commit a6e7d0a4bdb0 ("ALSA: hda: fix jack detection with Realtek codecs when in D3"), let's try enabling runtime PM by default again. Signed-off-by: Kai-Heng Feng Link: https://lore.kernel.org/r/20201027130038.16463-4-kai.heng.feng@canonical.com Signed-off-by: Takashi Iwai (cherry picked from commit 9fc149c3bce7bdbb94948a8e6bd025e3b3538603) Signed-off-by: Kai-Heng Feng Signed-off-by: Timo Aaltonen --- sound/pci/hda/hda_intel.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index 031b8ba82fae0..fb9b6c0053170 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -2362,6 +2362,7 @@ static int azx_probe_continue(struct azx *chip) if (azx_has_pm_runtime(chip)) { pm_runtime_use_autosuspend(&pci->dev); + pm_runtime_allow(&pci->dev); pm_runtime_put_autosuspend(&pci->dev); }