From 0079b05131dc03f6622205c6bfe58328f658e4c1 Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Thu, 22 Jun 2023 15:20:47 +0300 Subject: [PATCH] ALSA: hda: add HD Audio PCI ID for Intel Arrow Lake Add HD Audio PCI ID for Intel Arrow Lake platform. Signed-off-by: Kai Vehmanen --- sound/pci/hda/hda_intel.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index ef831770ca7daa..9f329dd56257c2 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -2561,6 +2561,9 @@ static const struct pci_device_id azx_ids[] = { /* Lunarlake-P */ { PCI_DEVICE(0x8086, 0xa828), .driver_data = AZX_DRIVER_SKL | AZX_DCAPS_INTEL_SKYLAKE}, + /* Arrow Lake */ + { PCI_DEVICE(0x8086, 0x7f50), + .driver_data = AZX_DRIVER_SKL | AZX_DCAPS_INTEL_SKYLAKE}, /* Broxton-P(Apollolake) */ { PCI_DEVICE(0x8086, 0x5a98), .driver_data = AZX_DRIVER_SKL | AZX_DCAPS_INTEL_BROXTON },