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 50FE73396EE; Mon, 20 Apr 2026 16:06:25 +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=1776701185; cv=none; b=f8IidHLMS9ac2fZ789nTmloYV8gnsyrL/35eXzER+xLsMMwF1G97AcLQ928mh/peaZbBIbdLLc/inGTfAKFnRIN+2TzlhB8c+hTMUAWErG/lVXR+w6yLQ0Bdc/9UNya7l0WSPvdugCLy2D3ff2Va9QGPmfy0UDAuBvt9rHjIhI0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776701185; c=relaxed/simple; bh=sCgHLzBfu/fobijh1+Ym9Zal1KmcdZ5FuSjHTbizyCw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=iwtY9VZKrtsQsnItkNPwj6/IqQuScOGmn4rNQux2it7Iz3W+fAoNwVOjik3FaEtDKIWy0j/xS5CH9f1p13nL54X8nVtnXJIvQnyct9RiVFNBf6pqNLK2facSyplva19qUtgT87KLhwxH0OSF8EsmwOeyXhi1oR4ABLLgDyzRPEU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=BwiG7EOq; 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="BwiG7EOq" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C7D34C19425; Mon, 20 Apr 2026 16:06:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1776701185; bh=sCgHLzBfu/fobijh1+Ym9Zal1KmcdZ5FuSjHTbizyCw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=BwiG7EOqArGviPVe0Ajx4i89nteQJ5r4eARJ6JQoQ/lTkywmrQkx20uFq7hAcsxvp U4S2Ngh/UVeCjMv8DXzFVV2Fuqc2IdS8ZkhwytGXp+DqLCe9e/yTWBr9Pj3ZSBi8mN Fqwj5vxQJedTNQlK5iWf/TQUK+R40cj9JsvwNpZw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Zhang Heng , Mark Brown , Sasha Levin Subject: [PATCH 6.12 008/162] ASoC: amd: yc: Add DMI quirk for Thin A15 B7VF Date: Mon, 20 Apr 2026 17:40:40 +0200 Message-ID: <20260420153927.316183327@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260420153927.006696811@linuxfoundation.org> References: <20260420153927.006696811@linuxfoundation.org> User-Agent: quilt/0.69 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.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Zhang Heng [ Upstream commit 1f182ec9d7084db7dfdb2372d453c28f0e5c3f0a ] Add a DMI quirk for the Thin A15 B7VF fixing the issue where the internal microphone was not detected. Link: https://bugzilla.kernel.org/show_bug.cgi?id=220833 Signed-off-by: Zhang Heng Link: https://patch.msgid.link/20260316080218.2931304-1-zhangheng@kylinos.cn 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 b8a957602b0a0..2414c1bba0789 100644 --- a/sound/soc/amd/yc/acp6x-mach.c +++ b/sound/soc/amd/yc/acp6x-mach.c @@ -717,6 +717,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = { DMI_MATCH(DMI_BOARD_NAME, "BM1403CDA"), } }, + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "Micro-Star International Co., Ltd."), + DMI_MATCH(DMI_PRODUCT_NAME, "Thin A15 B7VE"), + } + }, {} }; -- 2.53.0