[alsa-devel] ASoC: fix new build warning in fsl_ssi
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@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);
On Tue, Jan 07, 2014 at 01:09:48PM +0100, Arnd Bergmann wrote:
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=]".
Fabio sent a fix for this which has already been applied.
participants (2)
-
Arnd Bergmann
-
Mark Brown