summaryrefslogtreecommitdiffstats
path: root/sound/soc/fsl
diff options
context:
space:
mode:
authorViorel Suman2019-03-27 10:29:38 +0100
committerMark Brown2019-03-27 13:31:24 +0100
commit5fb94d46c3179cb7afd805a5a9252111316a926f (patch)
tree3be4ab77c0788aba491b8a2ae43718ab79cb027b /sound/soc/fsl
parentASoC: fsl: Add Audio Mixer machine driver (diff)
downloadkernel-qcow2-linux-5fb94d46c3179cb7afd805a5a9252111316a926f.tar.gz
kernel-qcow2-linux-5fb94d46c3179cb7afd805a5a9252111316a926f.tar.xz
kernel-qcow2-linux-5fb94d46c3179cb7afd805a5a9252111316a926f.zip
ASoC: fsl_audmix: Fix kbuild failure
The format in dev_dbg function must be a constant. Signed-off-by: Viorel Suman <viorel.suman@nxp.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/fsl')
-rw-r--r--sound/soc/fsl/fsl_audmix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/fsl/fsl_audmix.c b/sound/soc/fsl/fsl_audmix.c
index 3356cb617713..dabde0342c95 100644
--- a/sound/soc/fsl/fsl_audmix.c
+++ b/sound/soc/fsl/fsl_audmix.c
@@ -90,7 +90,7 @@ static int fsl_audmix_state_trans(struct snd_soc_component *comp,
struct fsl_audmix *priv = snd_soc_component_get_drvdata(comp);
/* Enforce all required TDMs are started */
if ((priv->tdms & prm.tdms) != prm.tdms) {
- dev_dbg(comp->dev, prm.msg);
+ dev_dbg(comp->dev, "%s", prm.msg);
return -EINVAL;
}