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 5AA392E972D; Tue, 15 Jul 2025 13:27:00 +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=1752586020; cv=none; b=IG2OxNM8rSwH0TskF5ePBgft+nwTOBz+aHo3b3F29TquEVX4kabDeeYnNYk1gbSGdv/r2F5IEYdKFNZQTLlgvm6b7TTy1256hsVVyiueqnz7Xb96G8Ni71H1JBRKyzAKLb9wPidyhNVpjQzfZT5Se2x+0vKJ6/BfXci5zzIJok4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752586020; c=relaxed/simple; bh=gCm3piKnCrD3uPpBlyHVhWDkkTes+FmZXC0JC1ycirw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=InO6bdNv7HutNXK9BY3yUJmDaDlpHEHrqXjMKJFVgnIqJVsAngxeZKV2gIbCOGCT2HL8xTXCWfuTW9o1ksj40n8rwZ7/2m+zYC4Uio7MMGS6K65G3NqBsJhCRkbuuyDzeDVQfW3ntM3NumKYNKGecjRnvGO/Je8zxnvyopPAk5c= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=HaxUU9Fb; 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="HaxUU9Fb" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D87FAC4CEE3; Tue, 15 Jul 2025 13:26:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1752586020; bh=gCm3piKnCrD3uPpBlyHVhWDkkTes+FmZXC0JC1ycirw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HaxUU9FbYaOgB+xfuHXzbRtVSF3W91tFNO7GZ0g4bjzT1qEDm/bdvp6jQMj+HFPoO 7NhcSD5F7zVabR1vcshShACCUICD5ny1BhfbtGnX2XhU+p+fUh2fyhTCnzoqr+RIab oen2kxCISIXYGEmpvnUzKzTN3nRsowYf+AGj5g8s= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Yuzuru , Mark Brown , Sasha Levin Subject: [PATCH 6.6 095/109] ASoC: amd: yc: add quirk for Acer Nitro ANV15-41 internal mic Date: Tue, 15 Jul 2025 15:13:51 +0200 Message-ID: <20250715130802.687389250@linuxfoundation.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20250715130758.864940641@linuxfoundation.org> References: <20250715130758.864940641@linuxfoundation.org> User-Agent: quilt/0.68 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-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Yuzuru10 [ Upstream commit 7186b81807b4a08f8bf834b6bdc72d6ed8ba1587 ] This patch adds DMI-based quirk for the Acer Nitro ANV15-41, allowing the internal microphone to be detected correctly on machines with "RB" as board vendor. Signed-off-by: Yuzuru Link: https://patch.msgid.link/20250622225754.20856-1-yuzuru_10@proton.me Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/amd/yc/acp6x-mach.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c index 429e61d47ffbb..66ef8f4fd02cd 100644 --- a/sound/soc/amd/yc/acp6x-mach.c +++ b/sound/soc/amd/yc/acp6x-mach.c @@ -346,6 +346,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = { DMI_MATCH(DMI_PRODUCT_NAME, "83Q3"), } }, + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "RB"), + DMI_MATCH(DMI_PRODUCT_NAME, "Nitro ANV15-41"), + } + }, { .driver_data = &acp6x_card, .matches = { -- 2.39.5