From nobody Fri Sep 25 00:42:05 2026 Received: from mailgw.kylinos.cn (mailgw.kylinos.cn [124.126.103.232]) (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 553194D4889; Fri, 18 Sep 2026 10:50:12 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=124.126.103.232 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789728618; cv=none; b=XmGY7gXBqVq2TcC5rhNN88JTK0S2n36SK5bLmeVVWx53MEPLEAg3CMY4tPf0K1p7MJ6e9s3zxQunDGhOBJpDjzUVGeFOIFKiZ8segu+/ENwUf0rKNOKWnWDMt+nSy/teqPKo6/5su+Z3a0m6hj5v6zADnGzsO6RxnEsyruTX+KA= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789728618; c=relaxed/simple; bh=cRckdiHI77lG8lHTOSmyv7EVZeeZsfDpSfI6uswyhOc=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=KDvnerL2NWgbAf2F0yQidC34BPO2/MVjFu0PwDM7Hm1pDuWs4qSpiGha+/tf/BStlGjRrVxtLAkQ/uvGeT9S4UclYCW3x768w4hyqUQcqfwyj5m6ZIXbh3Hb7HTeG9rCtXZKx0BFIinw/lQTxDcxMVLdcm+smb6Or6apybNaQKA= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=kylinos.cn; spf=pass smtp.mailfrom=kylinos.cn; arc=none smtp.client-ip=124.126.103.232 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=kylinos.cn Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=kylinos.cn X-UUID: b54f647eb34e11f19a56ed5b684f684d-20260918 X-CID-P-RULE: Release_Ham X-CID-O-INFO: VERSION:1.3.19,REQID:23960754-4015-4b72-8278-c0968b68bdad,IP:0,U RL:0,TC:0,Content:0,EDM:25,RT:0,SF:0,FILE:0,BULK:0,RULE:Release_Ham,ACTION :release,TS:25 X-CID-META: VersionHash:7db8b62,CLOUDID:8a2ebea01b7fe60aaae35fa65b411575,BulkI D:nil,BulkQuantity:0,SF:102|850|865|898,TC:nil,Content:0|15|50|99,EDM:5,IP :nil,URL:99|1,File:nil,RT:nil,Bulk:nil,QS:nil,BEC:nil,COL:0,OSI:0,OSA:0,AV :0,LES:1,SPR:NO,DKR:0,DKP:0,BRR:0,BRE:0,ARC:0 X-CID-BVR: 2,SSN|SDN X-CID-BAS: 2,SSN|SDN,0,_ X-CID-FACTOR: TF_CID_SPAM_SNR,TF_CID_SPAM_ULS X-CID-RHF: D41D8CD98F00B204E9800998ECF8427E X-UUID: b54f647eb34e11f19a56ed5b684f684d-20260918 X-User: zhangheng@kylinos.cn Received: from localhost.localdomain [(10.44.16.150)] by mailgw.kylinos.cn (envelope-from ) (Generic MTA with TLSv1.3 TLS_AES_256_GCM_SHA384 256/256) with ESMTP id 904423049; Fri, 18 Sep 2026 18:50:05 +0800 From: Zhang Heng To: broonie@kernel.org Cc: linux-sound@vger.kernel.org, linux-kernel@vger.kernel.org, Zhang Heng Subject: [PATCH] ASoC: amd: yc: Add DMI quirk for MSI Thin A15 B7UCX Date: Fri, 18 Sep 2026 18:49:44 +0800 Message-Id: <20260918104944.649403-1-zhangheng@kylinos.cn> X-Mailer: git-send-email 2.25.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Add a DMI quirk for the MSI Thin A15 B7UCX fixing the issue where the internal microphone was not detected. Link: https://bugzilla.kernel.org/show_bug.cgi?id=3D220833 Signed-off-by: Zhang Heng --- 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 385fede6d77f..3e6341286358 100644 --- a/sound/soc/amd/yc/acp6x-mach.c +++ b/sound/soc/amd/yc/acp6x-mach.c @@ -864,6 +864,13 @@ static const struct dmi_system_id yc_acp_quirk_table[]= =3D { DMI_MATCH(DMI_PRODUCT_NAME, "Thin A15 B7UC"), } }, + { + .driver_data =3D &acp6x_card, + .matches =3D { + DMI_MATCH(DMI_BOARD_VENDOR, "Micro-Star International Co., Ltd."), + DMI_MATCH(DMI_PRODUCT_NAME, "Thin A15 B7UCX"), + } + }, { .driver_data =3D &acp6x_card, .matches =3D { --=20 2.25.1