From: Amadeusz Sławiński Date: Fri, 1 Apr 2022 12:01:59 +0000 (+0200) Subject: ASoC: topology: Correct error message X-Git-Tag: v5.19-rc1~152^2~2^2~161^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=34b310451cbf4dedcee56b4534085c20203c6b53;p=thirdparty%2Fkernel%2Flinux.git ASoC: topology: Correct error message 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 Reviewed-by: Ranjani Sridharan Reviewed-by: Cezary Rojewski Link: https://lore.kernel.org/r/20220401120200.4047867-6-amadeuszx.slawinski@linux.intel.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/soc-topology.c b/sound/soc/soc-topology.c index 4e7dabcd69a4e..3390bf0f82957 100644 --- a/sound/soc/soc-topology.c +++ b/sound/soc/soc-topology.c @@ -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)); }