[alsa-devel] ASoC: fix new build warning in fsl_ssi
Arnd Bergmann
arnd at arndb.de
Tue Jan 7 13:09:48 CET 2014
Commit 6873ee464a9f "ASoC: fsl_ssi: Fix printing return code on clk error"
changed a warning message but got the format string wrong, resulting in
a warning "sound/soc/fsl/fsl_ssi.c:1196:6: warning: format '%d' expects
argument of type 'int', but argument 3 has type 'long int' [-Wformat=]".
Signed-off-by: Arnd Bergmann <arnd at arndb.de>
---
Please apply or fold into the original patch, whichever works for you.
diff --git a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c
index 3d74477a..c9d567c 100644
--- a/sound/soc/fsl/fsl_ssi.c
+++ b/sound/soc/fsl/fsl_ssi.c
@@ -1192,7 +1192,7 @@ static int fsl_ssi_probe(struct platform_device *pdev)
*/
ssi_private->baudclk = devm_clk_get(&pdev->dev, "baud");
if (IS_ERR(ssi_private->baudclk))
- dev_warn(&pdev->dev, "could not get baud clock: %d\n",
+ dev_warn(&pdev->dev, "could not get baud clock: %ld\n",
PTR_ERR(ssi_private->baudclk));
else
clk_prepare_enable(ssi_private->baudclk);
More information about the Alsa-devel
mailing list