Skip to content

Commit

Permalink
ASoC: fsl_audmix: Fix kbuild failure
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Viorel Suman authored and Mark Brown committed Mar 27, 2019
1 parent b86ef53 commit 5fb94d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/fsl/fsl_audmix.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 5fb94d4

Please sign in to comment.