From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 9531378B7C; Wed, 21 Feb 2024 14:05:45 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708524346; cv=none; b=O2gGjTDtmRcgsQ5xbX5ozSJHiVUus4YVEBtLuK8sCVqfniLDEHeQdibkRv5MzTHHTFr1HQvXyITB6d36FpkqoFiKGkpVYVqCe6WCpuWIAGPGtIb7Ykk1iWL5T2FUhU91wHbnMILaooTyrWEsTsZKxV/YJGhnR3JW1yQMlxOkSiI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708524346; c=relaxed/simple; bh=eR7Nk+6P1b1qAj3dnzV7nWuvp14hdSQpCfPO33Sdbzw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=XIKtxfS5/xy0mjuYNUN54yw3Zc6OD1pLpZvoSQaBdPgkgJeapyw80VtMXrKwUL1pAd9Aoqg8MbjHQABH0IA6Vw1HPTVRV+GQuyAf/XKh635pzosfnJRDyLyQSJ0DtvEKDVNlG3Z/W3l5JXvdBNUb8NLoVIJX22dWwUPx1gg4U08= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=lFK7pXri; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="lFK7pXri" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 13F84C433F1; Wed, 21 Feb 2024 14:05:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1708524345; bh=eR7Nk+6P1b1qAj3dnzV7nWuvp14hdSQpCfPO33Sdbzw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=lFK7pXriGnr5Bgnnau/TI7NptAqO6ffRhY5rzrxvfOWpjlcRWKHcEYoP7jSxZyvj+ g0WOIW3dFxbYSZGphV7+oZ1dQqkb/Gw4FZsOcEQ4yuarEAHt/dnehl62IXLV931iTN vI4G7Avn62S0MQpcfHnel4HbGG3AWeKQR3rGnnxw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Pierre-Louis Bossart , =?UTF-8?q?P=C3=A9ter=20Ujfalusi?= , Kai Vehmanen , Mark Brown , Takashi Iwai , Sasha Levin Subject: [PATCH 5.10 188/379] ALSA: hda: Intel: add HDA_ARL PCI ID support Date: Wed, 21 Feb 2024 14:06:07 +0100 Message-ID: <20240221130000.470688137@linuxfoundation.org> X-Mailer: git-send-email 2.43.2 In-Reply-To: <20240221125954.917878865@linuxfoundation.org> References: <20240221125954.917878865@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Pierre-Louis Bossart [ Upstream commit a31014ebad617868c246d3985ff80d891f03711e ] Yet another PCI ID. Signed-off-by: Pierre-Louis Bossart Reviewed-by: Péter Ujfalusi Reviewed-by: Kai Vehmanen Acked-by: Mark Brown Link: https://lore.kernel.org/r/20231204212710.185976-3-pierre-louis.bossart@linux.intel.com Signed-off-by: Takashi Iwai Signed-off-by: Sasha Levin --- 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 12c6eb76fca3..a3c6a5eeba3a 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -2581,6 +2581,8 @@ static const struct pci_device_id azx_ids[] = { .driver_data = AZX_DRIVER_SKL | AZX_DCAPS_INTEL_SKYLAKE}, { PCI_DEVICE(0x8086, 0x4b58), .driver_data = AZX_DRIVER_SKL | AZX_DCAPS_INTEL_SKYLAKE}, + /* Arrow Lake */ + { PCI_DEVICE_DATA(INTEL, HDA_ARL, AZX_DRIVER_SKL | AZX_DCAPS_INTEL_SKYLAKE) }, /* Broxton-P(Apollolake) */ { PCI_DEVICE(0x8086, 0x5a98), .driver_data = AZX_DRIVER_SKL | AZX_DCAPS_INTEL_BROXTON }, -- 2.43.0