diff options
author | Lane Odenbach <laodenbach@gmail.com> | 2025-07-15 21:20:38 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2025-07-16 13:50:33 +0300 |
commit | 7bab1bd9fdf15b9fa7e6a4b0151deab93df3c80d (patch) | |
tree | 81507b8c3fdec14ae8e275a8d069c5c9ed1aefa2 | |
parent | ec5b9c847bb8ac0f458d2b2a3fa23ee84dd99c40 (diff) | |
download | linux-7bab1bd9fdf15b9fa7e6a4b0151deab93df3c80d.tar.xz |
ASoC: amd: yc: Add DMI quirk for HP Laptop 17 cp-2033dx
This fixes the internal microphone in the stated device
Signed-off-by: Lane Odenbach <laodenbach@gmail.com>
Link: https://patch.msgid.link/20250715182038.10048-1-laodenbach@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-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 c572691378d5..f210a253da9f 100644 --- a/sound/soc/amd/yc/acp6x-mach.c +++ b/sound/soc/amd/yc/acp6x-mach.c @@ -602,6 +602,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = { .driver_data = &acp6x_card, .matches = { DMI_MATCH(DMI_BOARD_VENDOR, "HP"), + DMI_MATCH(DMI_BOARD_NAME, "8A81"), + } + }, + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "HP"), DMI_MATCH(DMI_BOARD_NAME, "8B27"), } }, |