]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
ASoC: topology: Correct error message
authorAmadeusz Sławiński <amadeuszx.slawinski@linux.intel.com>
Fri, 1 Apr 2022 12:01:59 +0000 (14:01 +0200)
committerMark Brown <broonie@kernel.org>
Mon, 4 Apr 2022 07:39:21 +0000 (08:39 +0100)
Error message refers to mixer, but it is used for various other types of
controls, so change it to refer to generic "controls".

Signed-off-by: Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Reviewed-by: Cezary Rojewski <cezary.rojewski@intel.com>
Link: https://lore.kernel.org/r/20220401120200.4047867-6-amadeuszx.slawinski@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/soc-topology.c

index 4e7dabcd69a4e1609854be043fb1ca82f0f4fa28..3390bf0f82957bac37101c4beb48c7c893ffcb1a 100644 (file)
@@ -237,7 +237,7 @@ static inline void soc_control_err(struct soc_tplg *tplg,
        struct snd_soc_tplg_ctl_hdr *hdr, const char *name)
 {
        dev_err(tplg->dev,
-               "ASoC: no complete mixer IO handler for %s type (g,p,i) %d:%d:%d at 0x%lx\n",
+               "ASoC: no complete control IO handler for %s type (g,p,i) %d:%d:%d at 0x%lx\n",
                name, hdr->ops.get, hdr->ops.put, hdr->ops.info,
                soc_tplg_get_offset(tplg));
 }