From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 727AEC77B73 for ; Sun, 7 May 2023 00:36:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231547AbjEGAgN (ORCPT ); Sat, 6 May 2023 20:36:13 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57564 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231558AbjEGAfk (ORCPT ); Sat, 6 May 2023 20:35:40 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E75B322F5A; Sat, 6 May 2023 17:34:18 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 7371E614D9; Sun, 7 May 2023 00:33:21 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 26C3FC433EF; Sun, 7 May 2023 00:33:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1683419600; bh=/O/XkNe3bHehvczqzHylKHJi+VXkUeymg+W/IzhvROw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=PWrHZKStihm548377/R/0ntxbF/TBMuDVnBX5Tm+Gj5/aZoJKvCSx5GfTzRSXxE/2 LRNGj/IQQaDkOeTV2l/iN+AKZG+orpgdHmvm3nLDyD49BccFmR2wNZR50FdOeNlBQh tMQTFLchEpYBfgcHuIhAt3jaXO1EflfiXWOuUVMADvq/REyC9HHuY1BpcCrc2wJIn/ QoYbSMC/kznE0EPCb2Qd9zi+PW5YJmFmDehgzmaHd3suGFVWtzV+8Ji1eXDnxOHQQv jTul6JazZe6apN+HLxBQj9PqaQYvakffu1sdNhh2aT8KnbS/ezThHLKSlfQ9W3+jVY o8UlXPfslUWug== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Fred Oh , Pierre-Louis Bossart , =?UTF-8?q?P=C3=A9ter=20Ujfalusi?= , Bard Liao , Takashi Iwai , Sasha Levin , perex@perex.cz, tiwai@suse.com, rander.wang@intel.com, kai.vehmanen@linux.intel.com, amadeuszx.slawinski@linux.intel.com, yong.zhi@intel.com, evan.quan@amd.com, bhelgaas@google.com, alsa-devel@alsa-project.org Subject: [PATCH AUTOSEL 6.2 12/20] ALSA: hda: LNL: add HD Audio PCI ID Date: Sat, 6 May 2023 20:32:27 -0400 Message-Id: <20230507003237.4074305-12-sashal@kernel.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230507003237.4074305-1-sashal@kernel.org> References: <20230507003237.4074305-1-sashal@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Fred Oh [ Upstream commit 714b2f025d767e7df1fe9da18bd70537d64cc157 ] Add HD Audio PCI ID for Intel Lunarlake platform. Signed-off-by: Fred Oh Signed-off-by: Pierre-Louis Bossart Reviewed-by: Péter Ujfalusi Reviewed-by: Bard Liao Link: https://lore.kernel.org/r/20230406152500.15104-1-pierre-louis.bossart@linux.intel.com Signed-off-by: Takashi Iwai Signed-off-by: Sasha Levin --- 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 77a592f219472..881b2f3a1551f 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -2528,6 +2528,9 @@ static const struct pci_device_id azx_ids[] = { /* Meteorlake-P */ { PCI_DEVICE(0x8086, 0x7e28), .driver_data = AZX_DRIVER_SKL | AZX_DCAPS_INTEL_SKYLAKE}, + /* Lunarlake-P */ + { PCI_DEVICE(0x8086, 0xa828), + .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 }, -- 2.39.2