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

ASoC: mediatek: mt8188: Handle component name prefix

Use snd_soc_dapm_widget_name_cmp() helper when comparing widget names,
to include also the component's name prefix.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Reviewed-by: Trevor Wu <trevor.wu@mediatek.com>
Link: https://lore.kernel.org/r/20231023095428.166563-15-krzysztof.kozlowski@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Krzysztof Kozlowski and committed by
Mark Brown
d1ecaabe 0fe153a9

+2 -2
+2 -2
sound/soc/mediatek/mt8188/mt8188-dai-etdm.c
··· 576 576 577 577 switch (event) { 578 578 case SND_SOC_DAPM_PRE_PMU: 579 - if (strcmp(w->name, APLL1_W_NAME) == 0) 579 + if (snd_soc_dapm_widget_name_cmp(w, APLL1_W_NAME) == 0) 580 580 mt8188_apll1_enable(afe); 581 581 else 582 582 mt8188_apll2_enable(afe); 583 583 break; 584 584 case SND_SOC_DAPM_POST_PMD: 585 - if (strcmp(w->name, APLL1_W_NAME) == 0) 585 + if (snd_soc_dapm_widget_name_cmp(w, APLL1_W_NAME) == 0) 586 586 mt8188_apll1_disable(afe); 587 587 else 588 588 mt8188_apll2_disable(afe);