ASoC: codecs: wm8995: Handle component name prefix
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Mon, 23 Oct 2023 09:54:22 +0000 (11:54 +0200)
committerMark Brown <broonie@kernel.org>
Thu, 26 Oct 2023 11:15:48 +0000 (12:15 +0100)
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>
Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20231023095428.166563-12-krzysztof.kozlowski@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/wm8995.c

index 4ffa1896faabd01e434d011352a6b3a5f322ce0a..59ef2ef8ce0074957bd1eeecab7eac6f5b5813e0 100644 (file)
@@ -541,7 +541,7 @@ static int check_clk_sys(struct snd_soc_dapm_widget *source,
                clk = "AIF2CLK";
        else
                clk = "AIF1CLK";
-       return !strcmp(source->name, clk);
+       return !snd_soc_dapm_widget_name_cmp(source, clk);
 }
 
 static int wm8995_put_class_w(struct snd_kcontrol *kcontrol,