Commit 5fb94d46 authored by Viorel Suman's avatar Viorel Suman Committed by Mark Brown

ASoC: fsl_audmix: Fix kbuild failure

The format in dev_dbg function must be a constant.
Signed-off-by: default avatarViorel Suman <viorel.suman@nxp.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent b86ef536
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment