[alsa-devel] [PATCH 4/7] ALSA: hda/intel: Properly free the display power at error path
Takashi Iwai
tiwai at suse.de
Sun Dec 9 10:33:15 CET 2018
When an error occurs in azx_probe_continue(), we should release the
display power. However, the current code ignores it and releases the
display power only for HSW/BDW cases. Fix it.
Signed-off-by: Takashi Iwai <tiwai at suse.de>
---
sound/pci/hda/hda_intel.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
index cacee33a74a8..48b29f02f72d 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -2275,7 +2275,7 @@ static int azx_probe_continue(struct azx *chip)
pm_runtime_put_autosuspend(&pci->dev);
out_free:
- if (!hda->need_i915_power)
+ if (err < 0 || !hda->need_i915_power)
display_power(chip, false);
i915_power_fail:
--
2.19.2
More information about the Alsa-devel
mailing list