aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorGravatar Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com> 2024-04-18 16:26:21 +0200
committerGravatar Mark Brown <broonie@kernel.org> 2024-04-19 09:42:03 +0900
commit4cbb5050bffc49c716381ea2ecb07306dd46f83a (patch)
treeb08857d267b1a8fa60d99502926d0e114e28793d /sound
parentASoC: SOF: Core: Handle error returned by sof_select_ipc_and_paths (diff)
downloadlinux-4cbb5050bffc49c716381ea2ecb07306dd46f83a.tar.gz
linux-4cbb5050bffc49c716381ea2ecb07306dd46f83a.tar.bz2
linux-4cbb5050bffc49c716381ea2ecb07306dd46f83a.zip
ASoC: Intel: avs: Set name of control as in topology
When creating controls attached to widgets, there are a lot of rules if they get their name prefixed with widget name or not. Due to that controls ended up with weirdly looking names like "ssp0_fe DSP Volume", while topology set it to "DSP Volume". Fix this by setting no_wname_in_kcontrol_name to true in avs topology widgets which disables unwanted behaviour. Fixes: be2b81b519d7 ("ASoC: Intel: avs: Parse control tuples") Signed-off-by: Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com> Link: https://lore.kernel.org/r/20240418142621.2487478-1-amadeuszx.slawinski@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/intel/avs/topology.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/intel/avs/topology.c b/sound/soc/intel/avs/topology.c
index 13061bd1488b..42b42903ae9d 100644
--- a/sound/soc/intel/avs/topology.c
+++ b/sound/soc/intel/avs/topology.c
@@ -1582,6 +1582,8 @@ static int avs_widget_load(struct snd_soc_component *comp, int index,
if (!le32_to_cpu(dw->priv.size))
return 0;
+ w->no_wname_in_kcontrol_name = true;
+
if (w->ignore_suspend && !AVS_S0IX_SUPPORTED) {
dev_info_once(comp->dev, "Device does not support S0IX, check BIOS settings\n");
w->ignore_suspend = false;