diff options
author | Johnny Hsieh <mnixry@outlook.com> | 2024-02-26 14:44:50 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-02-26 16:45:49 +0100 |
commit | 50ee641643dd0f46702e9a99354398196e1734c2 (patch) | |
tree | 54b6ad9d8fa8e9b3376ae3599e077dcd70640358 /sound/soc | |
parent | ASoC: soc-card: Fix missing locking in snd_soc_card_get_kcontrol() (diff) | |
download | linux-50ee641643dd0f46702e9a99354398196e1734c2.tar.xz linux-50ee641643dd0f46702e9a99354398196e1734c2.zip |
ASoC: amd: yc: Add Lenovo ThinkBook 21J0 into DMI quirk table
This patch adds Lenovo 21J0 (ThinkBook 16 G5+ ARP) to the DMI quirks table
to enable internal microphone array.
Cc: linux-sound@vger.kernel.org
Signed-off-by: Johnny Hsieh <mnixry@outlook.com>
Link: https://msgid.link/r/TYSPR04MB8429D62DFDB6727866ECF1DEC55A2@TYSPR04MB8429.apcprd04.prod.outlook.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc')
-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 cc231185d72c..5587198751da 100644 --- a/sound/soc/amd/yc/acp6x-mach.c +++ b/sound/soc/amd/yc/acp6x-mach.c @@ -203,6 +203,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, "21J0"), + } + }, + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), DMI_MATCH(DMI_PRODUCT_NAME, "21J5"), } }, |