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 1325FF9EB; Sat, 3 Feb 2024 04:13:26 +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=1706933606; cv=none; b=QQzHQBNJvJ9WZ634oIq1TyHRYHZ0albpfxtOkZNp6ixsmWYIKQDii9LLKDpf3p5wcsghnWje5lql4gKbwis/Jll39w5lu4rVSsJc99vx20xbqHEcJtK8m8bDIjEgaahCaQMXg3UIER+/XrQyysabuHkyuplPn81KSbkX9V5x7rc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706933606; c=relaxed/simple; bh=Pd0RzMhu/GUBfJlqhxn8prfOF3kRgLnEDovZPGbq9S4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=LXYH2M0ffhEJYlJe4VBLcmi07S7ayXf+9jL31cZYqi1reJuyEORipaNGbTnSch5fdL1S+gJSs8ZiFJhlvdNCAe+ccaIvfckipRdZQVfGvZsMKRHmji7z3yqP2yNHHnFz62ptk9Y0781lOgaGKeG1zOkakETqXMkgfxlHPrshYww= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=KFw3zvWK; 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="KFw3zvWK" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CF8BBC433F1; Sat, 3 Feb 2024 04:13:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1706933605; bh=Pd0RzMhu/GUBfJlqhxn8prfOF3kRgLnEDovZPGbq9S4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KFw3zvWKHDHhbkoGteaKaJsrlNa18jyC1by2yMasAQh2ZDHPjUeBldzycvktgNdEt BQbpNTyBGLRMgw7WPXWqVjuXzjWEjCUlncqCurCSlhQ0Ii9H9hlY/qqCSwCFibcFQH tmoo86TWXZCgyt62ZJ3lh2LNlCzO9//ogi/nRuWI= 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 6.6 175/322] ALSA: hda: Intel: add HDA_ARL PCI ID support Date: Fri, 2 Feb 2024 20:04:32 -0800 Message-ID: <20240203035404.901886037@linuxfoundation.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240203035359.041730947@linuxfoundation.org> References: <20240203035359.041730947@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.6-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 75148485b755..55d3a78112e0 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -2504,6 +2504,8 @@ static const struct pci_device_id azx_ids[] = { { PCI_DEVICE_DATA(INTEL, HDA_LNL_P, AZX_DRIVER_SKL | AZX_DCAPS_INTEL_SKYLAKE) }, /* Arrow Lake-S */ { PCI_DEVICE_DATA(INTEL, HDA_ARL_S, AZX_DRIVER_SKL | AZX_DCAPS_INTEL_SKYLAKE) }, + /* Arrow Lake */ + { PCI_DEVICE_DATA(INTEL, HDA_ARL, AZX_DRIVER_SKL | AZX_DCAPS_INTEL_SKYLAKE) }, /* Apollolake (Broxton-P) */ { PCI_DEVICE_DATA(INTEL, HDA_APL, AZX_DRIVER_SKL | AZX_DCAPS_INTEL_BROXTON) }, /* Gemini-Lake */ -- 2.43.0