Skip to content

Commit 3254959

Browse files
saba-kareembroonie
authored andcommitted
ASoC: amd: amd_sdw: Add quirks for some new Dell laptops
Add a quirk to include the codec amplifier function for Dell SKU's listed in quirk table. Note: In these SKU's, the RT722 codec amplifier is excluded, and an external amplifier is used instead. Signed-off-by: Syed Saba Kareem <syed.sabakareem@amd.com> Message-ID: <20250903171817.2549507-1-syed.sabakareem@amd.com> Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 85a7132 commit 3254959

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

sound/soc/amd/acp/acp-sdw-legacy-mach.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,22 @@ static const struct dmi_system_id soc_sdw_quirk_table[] = {
7979
},
8080
.driver_data = (void *)(ASOC_SDW_CODEC_SPKR),
8181
},
82+
{
83+
.callback = soc_sdw_quirk_cb,
84+
.matches = {
85+
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
86+
DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0DD3"),
87+
},
88+
.driver_data = (void *)(ASOC_SDW_CODEC_SPKR),
89+
},
90+
{
91+
.callback = soc_sdw_quirk_cb,
92+
.matches = {
93+
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"),
94+
DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0DD4"),
95+
},
96+
.driver_data = (void *)(ASOC_SDW_CODEC_SPKR),
97+
},
8298
{}
8399
};
84100

0 commit comments

Comments
 (0)