mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-04 04:06:26 +00:00
ASoC: codecs: 88pm860x: 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-2-krzysztof.kozlowski@linaro.org Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
109cb21601
commit
ccd0c6c709
@ -400,9 +400,9 @@ static int pm860x_dac_event(struct snd_soc_dapm_widget *w,
|
||||
unsigned int dac = 0;
|
||||
int data;
|
||||
|
||||
if (!strcmp(w->name, "Left DAC"))
|
||||
if (!snd_soc_dapm_widget_name_cmp(w, "Left DAC"))
|
||||
dac = DAC_LEFT;
|
||||
if (!strcmp(w->name, "Right DAC"))
|
||||
if (!snd_soc_dapm_widget_name_cmp(w, "Right DAC"))
|
||||
dac = DAC_RIGHT;
|
||||
switch (event) {
|
||||
case SND_SOC_DAPM_PRE_PMU:
|
||||
|
Loading…
Reference in New Issue
Block a user