mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
ASoC: codecs: rt5682s: 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> Link: https://lore.kernel.org/r/20231023095428.166563-7-krzysztof.kozlowski@linaro.org Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
a1fa72a780
commit
b2056ce3cf
@ -1323,9 +1323,9 @@ static int set_i2s_event(struct snd_soc_dapm_widget *w,
|
||||
if (SND_SOC_DAPM_EVENT_ON(event))
|
||||
on = 1;
|
||||
|
||||
if (!strcmp(w->name, "I2S1") && !rt5682s->wclk_enabled)
|
||||
if (!snd_soc_dapm_widget_name_cmp(w, "I2S1") && !rt5682s->wclk_enabled)
|
||||
rt5682s_set_i2s(rt5682s, RT5682S_AIF1, on);
|
||||
else if (!strcmp(w->name, "I2S2"))
|
||||
else if (!snd_soc_dapm_widget_name_cmp(w, "I2S2"))
|
||||
rt5682s_set_i2s(rt5682s, RT5682S_AIF2, on);
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user