Skip to content

Commit ecea181

Browse files
krzkbroonie
authored andcommitted
ASoC: codecs: adav80x: 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: Nuno Sa <nuno.sa@analog.com> Link: https://lore.kernel.org/r/20231023095428.166563-4-krzysztof.kozlowski@linaro.org Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 7a07625 commit ecea181

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sound/soc/codecs/adav80x.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ static int adav80x_dapm_sysclk_check(struct snd_soc_dapm_widget *source,
229229
return 0;
230230
}
231231

232-
return strcmp(source->name, clk) == 0;
232+
return snd_soc_dapm_widget_name_cmp(source, clk) == 0;
233233
}
234234

235235
static int adav80x_dapm_pll_check(struct snd_soc_dapm_widget *source,

0 commit comments

Comments
 (0)