Skip to content

Commit b2056ce

Browse files
krzkbroonie
authored andcommitted
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>
1 parent a1fa72a commit b2056ce

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sound/soc/codecs/rt5682s.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1323,9 +1323,9 @@ static int set_i2s_event(struct snd_soc_dapm_widget *w,
13231323
if (SND_SOC_DAPM_EVENT_ON(event))
13241324
on = 1;
13251325

1326-
if (!strcmp(w->name, "I2S1") && !rt5682s->wclk_enabled)
1326+
if (!snd_soc_dapm_widget_name_cmp(w, "I2S1") && !rt5682s->wclk_enabled)
13271327
rt5682s_set_i2s(rt5682s, RT5682S_AIF1, on);
1328-
else if (!strcmp(w->name, "I2S2"))
1328+
else if (!snd_soc_dapm_widget_name_cmp(w, "I2S2"))
13291329
rt5682s_set_i2s(rt5682s, RT5682S_AIF2, on);
13301330

13311331
return 0;

0 commit comments

Comments
 (0)