diff mbox series

ALSA: hda/hdmi: Add quirk to force pin connectivity on NUC10

Message ID 20210720153216.2200938-1-kai.vehmanen@linux.intel.com (mailing list archive)
State Accepted
Commit e81d71e343c6c62cf323042caed4b7ca049deda5
Headers show
Series ALSA: hda/hdmi: Add quirk to force pin connectivity on NUC10 | expand

Commit Message

Kai Vehmanen July 20, 2021, 3:32 p.m. UTC
On some Intel NUC10 variants, codec reports AC_JACK_PORT_NONE as
pin default config for all pins. This results in broken audio.
Add a quirk to force connectivity.

BugLink: https://github.com/clearlinux/distribution/issues/2396
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
---
 sound/pci/hda/patch_hdmi.c | 1 +
 1 file changed, 1 insertion(+)


base-commit: 89b4a874d2af12ad13c1c36cdc93bbc05f56cd97

Comments

Takashi Iwai July 20, 2021, 3:41 p.m. UTC | #1
On Tue, 20 Jul 2021 17:32:16 +0200,
Kai Vehmanen wrote:
> 
> On some Intel NUC10 variants, codec reports AC_JACK_PORT_NONE as
> pin default config for all pins. This results in broken audio.
> Add a quirk to force connectivity.
> 
> BugLink: https://github.com/clearlinux/distribution/issues/2396
> Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>

Thanks, applied.


Takashi
diff mbox series

Patch

diff --git a/sound/pci/hda/patch_hdmi.c b/sound/pci/hda/patch_hdmi.c
index 2be5eaa3d968..65d2c5539919 100644
--- a/sound/pci/hda/patch_hdmi.c
+++ b/sound/pci/hda/patch_hdmi.c
@@ -1945,6 +1945,7 @@  static const struct snd_pci_quirk force_connect_list[] = {
 	SND_PCI_QUIRK(0x103c, 0x870f, "HP", 1),
 	SND_PCI_QUIRK(0x103c, 0x871a, "HP", 1),
 	SND_PCI_QUIRK(0x1462, 0xec94, "MS-7C94", 1),
+	SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", 1),
 	{}
 };