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 9616117A31C; Mon, 20 Apr 2026 15:57:20 +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=1776700640; cv=none; b=ST6O6vLqD5gsj4MVnFV1uMlBfCY2OfJT/5HTg7+d1j06Mb07XObcH3oOSCZUHOnUUFTJHizVOG+7J+8OUpQiWZDFCn4ZcfTdW7fWgwBNNyBbhdRptOPX6aj7EN3FEHAewfxWAHv1ymOTe06K5Rr8Evwx2MbBRbnniziKtHLxi3o= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776700640; c=relaxed/simple; bh=cuTgodR+wkEaoqJVlQxZbPvMpw1Lh5qgrKVR/2xUNJ4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=pgbR8F8uIRSpH0W2OS2F7aQPkWPI8lZ+JxGPmmsZbYeNBQVN8Zui5v+O/R692NQjRIMBPP2nDC7TmzpKNkUK/4wOXgfu0BbZa8Z2ho8DfzobVXcaSNf9UhMabkCvc246euMBz7B81wGBQOlC1GXFS4TUbeNt1m4EekkfDC+G8uM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=wFeSEnJo; 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="wFeSEnJo" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D1D68C19425; Mon, 20 Apr 2026 15:57:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1776700640; bh=cuTgodR+wkEaoqJVlQxZbPvMpw1Lh5qgrKVR/2xUNJ4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=wFeSEnJogwPuq4rYQOUrfNEGU0m7LGPPPlvMMFNR8RqbSDyoTes5Bt9CH5ARIINo1 SB76ICFvHRna6K0OH9VYyYyF/ssK9dIcVQprSNmA7PxiY9UlHjCLVMwx2iac8Qvd+f zmhDe2dueDHcJj5YfilFBorwLPe7VB3ru6Op+sV4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Vee Satayamas , Zhang Heng , Mark Brown , Sasha Levin Subject: [PATCH 6.18 003/198] ASoC: amd: yc: Add DMI quirk for ASUS EXPERTBOOK BM1403CDA Date: Mon, 20 Apr 2026 17:39:42 +0200 Message-ID: <20260420153935.734759849@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260420153935.605963767@linuxfoundation.org> References: <20260420153935.605963767@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.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Vee Satayamas [ Upstream commit f200b2f9a810c440c6750b56fc647b73337749a1 ] Add a DMI quirk for the Asus Expertbook BM1403CDA to resolve the issue of the internal microphone not being detected. Link: https://bugzilla.kernel.org/show_bug.cgi?id=221236 Signed-off-by: Vee Satayamas Reviewed-by: Zhang Heng Link: https://patch.msgid.link/20260315142511.66029-2-vsatayamas@gmail.com 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 1324543b42d72..c536de1bb94ad 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, "PM1503CDA"), } }, + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_BOARD_NAME, "BM1403CDA"), + } + }, {} }; -- 2.53.0