diff options
author | Mark Brown <broonie@kernel.org> | 2022-09-21 10:18:47 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-09-21 10:18:47 +0100 |
commit | 2ca8c73b67330b317200253f0017acd6832bac69 (patch) | |
tree | 30472f0a33e290dd7ef6acd58cc53992d9e45982 /sound/soc/amd | |
parent | 2edd66eccfeab9734512fac352b50d17366246f5 (diff) | |
parent | 2232b2dd8cd4f1e6d554b2c3f6899ce36f791b67 (diff) |
Add some models into acp6x quirk list
Merge series from Mario Limonciello <mario.limonciello@amd.com>:
Another model from ASUS and Lenovo have been identified that
don't include anything in ACPI tables to indicate they require the
ACP6x DMIC driver to be loaded.
This series adds them both to the quirk list.
Diffstat (limited to 'sound/soc/amd')
-rw-r--r-- | sound/soc/amd/yc/acp6x-mach.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c index e0b24e1daef3..2cb50d5cf1a9 100644 --- a/sound/soc/amd/yc/acp6x-mach.c +++ b/sound/soc/amd/yc/acp6x-mach.c @@ -171,6 +171,20 @@ static const struct dmi_system_id yc_acp_quirk_table[] = { DMI_MATCH(DMI_PRODUCT_NAME, "21J6"), } }, + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_NAME, "82"), + } + }, + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "UM5302TA"), + } + }, {} }; |