mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
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>
This commit is contained in:
parent
343b62590d
commit
e84c7f5db9
@ -276,13 +276,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)
|
||||
mt8183_apll1_enable(afe);
|
||||
else
|
||||
mt8183_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)
|
||||
mt8183_apll1_disable(afe);
|
||||
else
|
||||
mt8183_apll2_disable(afe);
|
||||
|
Loading…
Reference in New Issue
Block a user