ASoC: samsung: speyside: 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-17-krzysztof.kozlowski@linaro.org Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
86cfaf99e4
commit
317dd0dbad
@ -111,9 +111,9 @@ static int speyside_jack_polarity;
|
|||||||
static int speyside_get_micbias(struct snd_soc_dapm_widget *source,
|
static int speyside_get_micbias(struct snd_soc_dapm_widget *source,
|
||||||
struct snd_soc_dapm_widget *sink)
|
struct snd_soc_dapm_widget *sink)
|
||||||
{
|
{
|
||||||
if (speyside_jack_polarity && (strcmp(source->name, "MICB1") == 0))
|
if (speyside_jack_polarity && (snd_soc_dapm_widget_name_cmp(source, "MICB1") == 0))
|
||||||
return 1;
|
return 1;
|
||||||
if (!speyside_jack_polarity && (strcmp(source->name, "MICB2") == 0))
|
if (!speyside_jack_polarity && (snd_soc_dapm_widget_name_cmp(source, "MICB2") == 0))
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user