[PATCH] ALSA: hda/intel: Add Star Lite Mk II/III to power_save_denylist
Zhang Heng <[email protected]>
| Newsgroups | org.kernel.vger.linux-sound,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
The Star Lite Mk II (0x10ec, 0x111e) exhibits a pop sound when the speakers are used after a period of inactivity. This can be resolved by disabling the HDA power save feature via "options snd-hda-intel power_save=0". Add the device to the power_save_denylist to apply this workaround automatically. Link: https://bugzilla.kernel.org/show_bug.cgi?id=206623 Signed-off-by: Zhang Heng <[email protected]> --- sound/hda/controllers/intel.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sound/hda/controllers/intel.c b/sound/hda/controllers/intel.c index 9a5c61f43011..eda89ac83262 100644 --- a/sound/hda/controllers/intel.c +++ b/sound/hda/controllers/intel.c @@ -2316,6 +2316,8 @@ static const struct snd_pci_quirk power_save_denylist[] = { SND_PCI_QUIRK(0x17aa, 0x5079, "Lenovo Thinkpad E15", 0), /* https://bugzilla.kernel.org/show_bug.cgi?id=220694 */ SND_PCI_QUIRK(0x103c, 0x8a6b, "HP 89E9", 0), + /* https://bugzilla.kernel.org/show_bug.cgi?id=206623 */ + SND_PCI_QUIRK(0x10ec, 0x111e, "Star Lite Mk II/III", 0), {} }; -- 2.25.1