From 7fc393180ed46e8201c60d339b4caead6586654c Mon Sep 17 00:00:00 2001 From: Liao Xuan Date: Tue, 3 Mar 2026 20:57:08 +0800 Subject: [PATCH] anolis: ALSA: hda: Add support for Hygon family 18h model 18h HD-Audio ANBZ: #30096 Add the new PCI ID 0x1d94 0x2007 for Hygon family 18h model 18h HDA controller. Hygon-SIG: commit none hygon anolis: ALSA: hda: Add support for Hygon family 18h model 18h HD-Audio Signed-off-by: Liao Xuan Cc: hygon-arch@list.openanolis.cn --- sound/pci/hda/hda_intel.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index 3acce6eeef91..d7779b4e599e 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -2821,6 +2821,8 @@ static const struct pci_device_id azx_ids[] = { .driver_data = AZX_DRIVER_HYGON | AZX_DCAPS_POSFIX_LPIB | AZX_DCAPS_NO_MSI }, { PCI_DEVICE(0x1d94, 0x14c9), .driver_data = AZX_DRIVER_HYGON | AZX_DCAPS_POSFIX_LPIB }, + { PCI_DEVICE(0x1d94, 0x2007), + .driver_data = AZX_DRIVER_HYGON | AZX_DCAPS_POSFIX_LPIB }, { 0, } }; MODULE_DEVICE_TABLE(pci, azx_ids); -- Gitee