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 D62801C1AD4; Wed, 19 Mar 2025 14:35:07 +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=1742394907; cv=none; b=GJJ4fFdV4yI2QnnW9LuoTNPhJf0KVyH+PQxUvOF+1XPbtL4qbMmSJXHbe94Rbk/A1PYgk5cn+XPQdCmg0GIxKcugbTXDCl3U84wznlc+LcLM8zvoSHt5iiKvPs4+juGtOL2oeuCbj6MJKF5XJLSF248G7OOZpYV8BI4CPQdtd0E= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1742394907; c=relaxed/simple; bh=jAJbrpm3I28Q+bA5QP3Lfj1eQUZUdpMp/Gm18vK4gVk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=hXoDXXaCpUDIB5Sw0H5nTyzaW+LZnvY6fBPonoZxuVPescx04aqjB2+Lg8U7yCc93+kNI/iKkK/Tnn8VqEQOy2ffhIgyrLzVtxdpdOqe7l7dWeUgLia5J4BBRaak6cIdJtdGcCh8mrZBUfydiqmI7UJC3C4U3s8BruVNMKqSmIo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=dORGGGKW; 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="dORGGGKW" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 82512C4CEE4; Wed, 19 Mar 2025 14:35:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1742394907; bh=jAJbrpm3I28Q+bA5QP3Lfj1eQUZUdpMp/Gm18vK4gVk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=dORGGGKWvdRduH+iiZcxeRiQ2hWi7Mn+ettKOmVZqKSEYAi3p195rq7Kw4JRlfPNk UcmfzMZx0KSDs1pXVCSbbZCQwDWHAlrbJxlbDeedKsrmX5CYwBpANFlKR1QxkdMxuk 9jnVJz31ScTSytMhUgE/c+Oq7cOlVoVc2y35Q/y4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Peter Ujfalusi , Kai Vehmanen , Bard Liao , Mark Brown , Takashi Iwai , Sasha Levin Subject: [PATCH 6.13 119/241] ASoC: SOF: Intel: pci-ptl: Add support for PTL-H Date: Wed, 19 Mar 2025 07:29:49 -0700 Message-ID: <20250319143030.664157958@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250319143027.685727358@linuxfoundation.org> References: <20250319143027.685727358@linuxfoundation.org> User-Agent: quilt/0.68 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-Transfer-Encoding: 8bit 6.13-stable review patch. If anyone has any objections, please let me know. ------------------ From: Peter Ujfalusi [ Upstream commit 4e9c87cfcd0584f2a2e2f352a43ff003d688f3a4 ] PTL-H uses the same configuration as PTL. Signed-off-by: Peter Ujfalusi Reviewed-by: Kai Vehmanen Reviewed-by: Bard Liao Acked-by: Mark Brown Signed-off-by: Takashi Iwai Link: https://patch.msgid.link/20250210081730.22916-4-peter.ujfalusi@linux.intel.com Signed-off-by: Sasha Levin --- sound/soc/sof/intel/pci-ptl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/sof/intel/pci-ptl.c b/sound/soc/sof/intel/pci-ptl.c index 0aacdfac9fb43..c4fb6a2441b76 100644 --- a/sound/soc/sof/intel/pci-ptl.c +++ b/sound/soc/sof/intel/pci-ptl.c @@ -50,6 +50,7 @@ static const struct sof_dev_desc ptl_desc = { /* PCI IDs */ static const struct pci_device_id sof_pci_ids[] = { { PCI_DEVICE_DATA(INTEL, HDA_PTL, &ptl_desc) }, /* PTL */ + { PCI_DEVICE_DATA(INTEL, HDA_PTL_H, &ptl_desc) }, /* PTL-H */ { 0, } }; MODULE_DEVICE_TABLE(pci, sof_pci_ids); -- 2.39.5