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 1DAA2248869; Mon, 23 Jun 2025 13:25:21 +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=1750685121; cv=none; b=UAyproY50jK2ckqlmc/UFVA2TouIhVGodpfmHQrm3gmb/EHM9nG7HNaTHX3sw4aTJVwyNudk0CheCSifEcjSLj7d355LZeA8eWni7Qy5mNKK0R8C4rIeNEVsdLRvjTgEvR59o31InGjsdxtQ9XlxTGZ8w/vXxhENoAQBQk6HOHc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750685121; c=relaxed/simple; bh=ivKTjt+KVE4SZ2PT7Tcb2BHh9H9Qdn8VBh3fixHt7Qg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=GLgvVYX0sl2oAWCM68yLt2PFyAgjT3DOhJiTVcc0NOoV+vIUzUkG0ZCKZymdPBQKSADh95iR6yj6m06Ej/XTH9qvAl5M+Gexc5ZMgEJleWl+44yCo06lGGriZG7FEUGHPkeRCsuz9co9w06WyApaQuiElcINA1RAMrg/6xeIpdw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=LNsSsNYh; 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="LNsSsNYh" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A2555C4CEEA; Mon, 23 Jun 2025 13:25:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1750685121; bh=ivKTjt+KVE4SZ2PT7Tcb2BHh9H9Qdn8VBh3fixHt7Qg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=LNsSsNYh/+26Fyc1TVoqSMd+awJRrX2QQfPJ5OYygl+mOWkiu+Q5XWCzcCFiM9p/R 52UDg7Uer/hRUZ5kIuKgu2KRhr/oxyXP2IortRa93gN7a0YW0U4Xubu/boXK6IfaAr TTbQ/r/81YOVT/ngrKOd3geEkdSqJNBN1wMzAGE4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Talhah Peerbhai , Mark Brown , Sasha Levin Subject: [PATCH 6.15 207/592] ASoC: amd: yc: Add quirk for Lenovo Yoga Pro 7 14ASP9 Date: Mon, 23 Jun 2025 15:02:45 +0200 Message-ID: <20250623130705.211870699@linuxfoundation.org> X-Mailer: git-send-email 2.50.0 In-Reply-To: <20250623130700.210182694@linuxfoundation.org> References: <20250623130700.210182694@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.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Talhah Peerbhai [ Upstream commit a28206060dc5848a1a2a15b7f6ac6223d869084d ] Similar to many other Lenovo models with AMD chips, the Lenovo Yoga Pro 7 14ASP9 (product name 83HN) requires a specific quirk to ensure internal mic detection. This patch adds a quirk fixing this. Signed-off-by: Talhah Peerbhai Link: https://patch.msgid.link/20250515222741.144616-1-talhah.peerbhai@gmail.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/amd/yc/acp6x-mach.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c index e632f16c91025..3d9da93d22ee8 100644 --- a/sound/soc/amd/yc/acp6x-mach.c +++ b/sound/soc/amd/yc/acp6x-mach.c @@ -311,6 +311,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = { DMI_MATCH(DMI_PRODUCT_NAME, "83AS"), } }, + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_NAME, "83HN"), + } + }, { .driver_data = &acp6x_card, .matches = { @@ -360,7 +367,7 @@ static const struct dmi_system_id yc_acp_quirk_table[] = { DMI_MATCH(DMI_PRODUCT_NAME, "M5402RA"), } }, - { + { .driver_data = &acp6x_card, .matches = { DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK COMPUTER INC."), -- 2.39.5