From: Krzysztof Kozlowski Date: Mon, 23 Oct 2023 09:54:14 +0000 (+0200) Subject: ASoC: codecs: adav80x: Handle component name prefix X-Git-Tag: io_uring-6.7-2023-11-10~21^2~1^2~8^2~14 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=ecea1812b911fed5e675b2d37b29ad4265c067ce;p=linux-block.git 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 Reviewed-by: Nuno Sa Link: https://lore.kernel.org/r/20231023095428.166563-4-krzysztof.kozlowski@linaro.org Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/adav80x.c b/sound/soc/codecs/adav80x.c index bb08969c5917..c8c0fc928211 100644 --- a/sound/soc/codecs/adav80x.c +++ b/sound/soc/codecs/adav80x.c @@ -229,7 +229,7 @@ static int adav80x_dapm_sysclk_check(struct snd_soc_dapm_widget *source, return 0; } - return strcmp(source->name, clk) == 0; + return snd_soc_dapm_widget_name_cmp(source, clk) == 0; } static int adav80x_dapm_pll_check(struct snd_soc_dapm_widget *source,