diff options
| author | Zhang Heng <zhangheng@kylinos.cn> | 2026-08-05 17:15:59 +0800 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2026-08-05 12:52:54 +0100 |
| commit | bc734d167ac5a280455046b7286764e7bb776fa6 (patch) | |
| tree | 708b6018f03fafbf629dbb4030cdb27606494868 | |
| parent | 05eebef3c7b2e8595fdd1bd46912aac9c1de8587 (diff) | |
ASoC: amd: yc: Add DMI quirk for Xiaomi RedmiBook 16 2025
Add a DMI quirk for the Xiaomi RedmiBook 16 2025 (AMD) fixing the
issue where the internal microphone was not detected.
Link: https://github.com/thesofproject/linux/issues/5860
Signed-off-by: Zhang Heng <zhangheng@kylinos.cn>
Link: https://patch.msgid.link/20260805091600.318018-1-zhangheng@kylinos.cn
Signed-off-by: Mark Brown <broonie@kernel.org>
| -rw-r--r-- | sound/soc/amd/yc/acp6x-mach.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c index b62dd77b588d..78cf082e0d95 100644 --- a/sound/soc/amd/yc/acp6x-mach.c +++ b/sound/soc/amd/yc/acp6x-mach.c @@ -857,7 +857,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = { DMI_MATCH(DMI_PRODUCT_NAME, "Vivobook_ASUSLaptop M6500RE_M6500RE"), } }, - + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "XIAOMI"), + DMI_MATCH(DMI_BOARD_NAME, "TM2423"), + } + }, {} }; |
