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 BD626433BE; Tue, 14 May 2024 10:23:22 +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=1715682202; cv=none; b=Mkf+1UW3xv2hdlIucfCiJg4UOrw3hvS1+PvvLo6D5thcvEZZNQ0/GbFPqoAE/vCyb7mS1IaX5wQ1CUy16J3Oa6mM2Qi5s3D4tsuFh+Z6+sl78DjC4Gh2cXDzjFajSsDBEDt4xfnBowgzlEBjZ7pheSTnJNDmx6AHVi6AFGnbc9w= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715682202; c=relaxed/simple; bh=DtYerfnxD2MmSAw+oQAAGkEVWGqhddsx2M4E/lEIZuM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=cecCQcQ9HYuA0HWfTHBP0nVkE2JMPmZSTAFPODajM1PUVm8ncfTFaRscrU1Qzds1NDpU0feht1JZLfAM3GbAVy83u5dfJ9MRMSUYbepV6bHTMOyQyITpPPqHsAA676VvoOG350pAJachQsKIOk0MtADHQVBB7YqMYgSxnJLNozw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=HimVoOD5; 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="HimVoOD5" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 291DCC2BD10; Tue, 14 May 2024 10:23:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1715682202; bh=DtYerfnxD2MmSAw+oQAAGkEVWGqhddsx2M4E/lEIZuM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HimVoOD5uBvtAus21esZbgO2dscFr5l3QUVsNl/JWIWXvUV3yBjBv9PIYxLjNX7aX ZN1wx4GRpNUhHwVaOi5EaFpqjUv3Fk/AEYvXlPwAvsUbLXeazOqjrQKE1Di2BcoHyU NRmLWePB5y0UkhYE8PcTIXUvgiHHBbneHkIY0pHM= 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?= , Bard Liao , Mark Brown , Sasha Levin Subject: [PATCH 6.8 028/336] ASoC: SOF: Intel: add default firmware library path for LNL Date: Tue, 14 May 2024 12:13:52 +0200 Message-ID: <20240514101039.668222406@linuxfoundation.org> X-Mailer: git-send-email 2.45.0 In-Reply-To: <20240514101038.595152603@linuxfoundation.org> References: <20240514101038.595152603@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.8-stable review patch. If anyone has any objections, please let me know. ------------------ From: Pierre-Louis Bossart [ Upstream commit 305539a25a1c9929b058381aac6104bd939c0fee ] The commit cd6f2a2e6346 ("ASoC: SOF: Intel: Set the default firmware library path for IPC4") added the default_lib_path field for all platforms, but this was missed when LunarLake was later introduced. Fixes: 64a63d9914a5 ("ASoC: SOF: Intel: LNL: Add support for Lunarlake platform") Signed-off-by: Pierre-Louis Bossart Reviewed-by: Péter Ujfalusi Reviewed-by: Bard Liao Link: https://msgid.link/r/20240408194147.28919-2-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/sof/intel/pci-lnl.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sound/soc/sof/intel/pci-lnl.c b/sound/soc/sof/intel/pci-lnl.c index b26ffe767fab5..b14e508f1f315 100644 --- a/sound/soc/sof/intel/pci-lnl.c +++ b/sound/soc/sof/intel/pci-lnl.c @@ -35,6 +35,9 @@ static const struct sof_dev_desc lnl_desc = { .default_fw_path = { [SOF_IPC_TYPE_4] = "intel/sof-ipc4/lnl", }, + .default_lib_path = { + [SOF_IPC_TYPE_4] = "intel/sof-ipc4-lib/lnl", + }, .default_tplg_path = { [SOF_IPC_TYPE_4] = "intel/sof-ipc4-tplg", }, -- 2.43.0