ASoC: mediatek: mt8188: Handle component name prefix
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Mon, 23 Oct 2023 09:54:25 +0000 (11:54 +0200)
committerMark Brown <broonie@kernel.org>
Thu, 26 Oct 2023 11:15:51 +0000 (12:15 +0100)
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>
sound/soc/mediatek/mt8188/mt8188-dai-etdm.c

index 16440dd0a89cee89cd69f3faaab160bbff39b048..2a48f5fd6826c6b8ac6ba623545c1aa693b180f5 100644 (file)
@@ -576,13 +576,13 @@ static int mtk_apll_event(struct snd_soc_dapm_widget *w,
 
        switch (event) {
        case SND_SOC_DAPM_PRE_PMU:
-               if (strcmp(w->name, APLL1_W_NAME) == 0)
+               if (snd_soc_dapm_widget_name_cmp(w, APLL1_W_NAME) == 0)
                        mt8188_apll1_enable(afe);
                else
                        mt8188_apll2_enable(afe);
                break;
        case SND_SOC_DAPM_POST_PMD:
-               if (strcmp(w->name, APLL1_W_NAME) == 0)
+               if (snd_soc_dapm_widget_name_cmp(w, APLL1_W_NAME) == 0)
                        mt8188_apll1_disable(afe);
                else
                        mt8188_apll2_disable(afe);