diff options
author | Ilya Zverev <ilya@zverev.info> | 2024-11-27 14:44:20 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-11-27 14:45:45 +0100 |
commit | b682aa788e5f9f1ddacdfbb453e49fd3f4e83721 (patch) | |
tree | 800f4edf57da9505ca95e2157043518132f5ae9b /sound/soc/amd | |
parent | ASoC: SOF: ipc3-topology: Convert the topology pin index to ALH dai index (diff) | |
download | linux-b682aa788e5f9f1ddacdfbb453e49fd3f4e83721.tar.xz linux-b682aa788e5f9f1ddacdfbb453e49fd3f4e83721.zip |
ASoC: amd: yc: Add a quirk for microfone on Lenovo ThinkPad P14s Gen 5 21MES00B00
New ThinkPads need new quirk entries. Ilya has tested this one.
Laptop product id is 21MES00B00, though the shorthand 21ME works.
Closes: https://bugzilla.kernel.org/show_bug.cgi?id=219533
Cc: stable@vger.kernel.org
Signed-off-by: Ilya Zverev <ilya@zverev.info>
Link: https://patch.msgid.link/20241127134420.14471-1-ilya@zverev.info
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/amd')
-rw-r--r-- | sound/soc/amd/yc/acp6x-mach.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c index facd82f0f251..e38c5885dadf 100644 --- a/sound/soc/amd/yc/acp6x-mach.c +++ b/sound/soc/amd/yc/acp6x-mach.c @@ -252,6 +252,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = { .driver_data = &acp6x_card, .matches = { DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_NAME, "21ME"), + } + }, + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), DMI_MATCH(DMI_PRODUCT_NAME, "82QF"), } }, |