Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Hasun Park and committed by
Mark Brown
2594196f 215e5fe7

+8
+8
sound/soc/amd/acp/acp-sdw-legacy-mach.c
··· 111 111 }, 112 112 .driver_data = (void *)(ASOC_SDW_CODEC_SPKR), 113 113 }, 114 + { 115 + .callback = soc_sdw_quirk_cb, 116 + .matches = { 117 + DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK COMPUTER INC."), 118 + DMI_MATCH(DMI_PRODUCT_NAME, "HN7306EA"), 119 + }, 120 + .driver_data = (void *)(ASOC_SDW_ACP_DMIC), 121 + }, 114 122 {} 115 123 }; 116 124