From 41a77b61d648fa419fd6be06068fa92d9447c6f5 Mon Sep 17 00:00:00 2001 From: Liao Xuan Date: Wed, 4 Feb 2026 20:19:24 +0800 Subject: [PATCH] anolis: ALSA: hda: Add LPIB position fix for Hygon 0x14c9 HD-Audio ANBZ: #9363 Add the AZX_DCAPS_POSFIX_LPIB flag to Hygon 0x14c9 HD-Audio controller to enable LPIB-based position reporting fixes. Hygon-SIG: commit none hygon anolis: ALSA: hda: Add LPIB position fix for Hygon 0x14c9 HD-Audio Signed-off-by: Liao Xuan Cc: hygon-arch@list.openanolis.cn --- sound/pci/hda/hda_intel.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index c2f4cf9fef35..3acce6eeef91 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -2819,7 +2819,8 @@ static const struct pci_device_id azx_ids[] = { /* Hygon HDAudio */ { PCI_DEVICE(0x1d94, 0x14a9), .driver_data = AZX_DRIVER_HYGON | AZX_DCAPS_POSFIX_LPIB | AZX_DCAPS_NO_MSI }, - { PCI_DEVICE(0x1d94, 0x14c9), .driver_data = AZX_DRIVER_HYGON }, + { PCI_DEVICE(0x1d94, 0x14c9), + .driver_data = AZX_DRIVER_HYGON | AZX_DCAPS_POSFIX_LPIB }, { 0, } }; MODULE_DEVICE_TABLE(pci, azx_ids); -- Gitee