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>
This commit is contained in:
parent
b86ef53677
commit
5fb94d46c3
|
@ -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);
|
struct fsl_audmix *priv = snd_soc_component_get_drvdata(comp);
|
||||||
/* Enforce all required TDMs are started */
|
/* Enforce all required TDMs are started */
|
||||||
if ((priv->tdms & prm.tdms) != prm.tdms) {
|
if ((priv->tdms & prm.tdms) != prm.tdms) {
|
||||||
dev_dbg(comp->dev, prm.msg);
|
dev_dbg(comp->dev, "%s", prm.msg);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue