Skip to content

Commit e84c7f5

Browse files
krzkbroonie
authored andcommitted
ASoC: mediatek: mt8183: 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> Link: https://lore.kernel.org/r/20231023095428.166563-13-krzysztof.kozlowski@linaro.org Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 343b625 commit e84c7f5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sound/soc/mediatek/mt8183/mt8183-dai-i2s.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,13 +276,13 @@ static int mtk_apll_event(struct snd_soc_dapm_widget *w,
276276

277277
switch (event) {
278278
case SND_SOC_DAPM_PRE_PMU:
279-
if (strcmp(w->name, APLL1_W_NAME) == 0)
279+
if (snd_soc_dapm_widget_name_cmp(w, APLL1_W_NAME) == 0)
280280
mt8183_apll1_enable(afe);
281281
else
282282
mt8183_apll2_enable(afe);
283283
break;
284284
case SND_SOC_DAPM_POST_PMD:
285-
if (strcmp(w->name, APLL1_W_NAME) == 0)
285+
if (snd_soc_dapm_widget_name_cmp(w, APLL1_W_NAME) == 0)
286286
mt8183_apll1_disable(afe);
287287
else
288288
mt8183_apll2_disable(afe);

0 commit comments

Comments
 (0)