ASoC: amd: acp: add ASUS HN7306EA quirk for legacy SDW machine

Add a DMI quirk entry for ASUS HN7306EA in the ACP SoundWire legacy
machine driver.

Set driver_data to ASOC_SDW_ACP_DMIC for this board so the
platform-specific DMIC quirk path is selected.

Signed-off-by: Hasun Park <hasunpark@gmail.com>
Link: https://patch.msgid.link/20260319163321.30326-1-hasunpark@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Hasun Park 2026-03-20 01:33:21 +09:00 committed by Mark Brown
parent 215e5fe758
commit 2594196f4e
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0

View File

@ -111,6 +111,14 @@ static const struct dmi_system_id soc_sdw_quirk_table[] = {
},
.driver_data = (void *)(ASOC_SDW_CODEC_SPKR),
},
{
.callback = soc_sdw_quirk_cb,
.matches = {
DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK COMPUTER INC."),
DMI_MATCH(DMI_PRODUCT_NAME, "HN7306EA"),
},
.driver_data = (void *)(ASOC_SDW_ACP_DMIC),
},
{}
};