diff options
| author | Cezary Rojewski <[email protected]> | 2022-10-10 14:19:45 +0200 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2022-10-17 12:50:08 +0100 |
| commit | 8b2446eaa45a3be5bb5c6fb79cc745d228dac431 (patch) | |
| tree | 4d7029b217e1d1c06ac158d3a0bf0f62ce89e35f | |
| parent | 9d0737fa0e7530313634c0ecd75f09a95ba8d44a (diff) | |
ASoC: Intel: avs: Support AML with rt286 configuration
ACPI ID of INT343A signals rt286 device for SKL, KBL and AML platforms.
Add the missing AML entry.
Signed-off-by: Cezary Rojewski <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
| -rw-r--r-- | sound/soc/intel/avs/board_selection.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sound/soc/intel/avs/board_selection.c b/sound/soc/intel/avs/board_selection.c index 87f9c18be238..95afbac0f358 100644 --- a/sound/soc/intel/avs/board_selection.c +++ b/sound/soc/intel/avs/board_selection.c @@ -29,6 +29,12 @@ static const struct dmi_system_id kbl_dmi_table[] = { DMI_MATCH(DMI_BOARD_NAME, "Skylake Y LPDDR3 RVP3"), }, }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Intel Corporation"), + DMI_MATCH(DMI_BOARD_NAME, "AmberLake Y"), + }, + }, {} }; |