aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/s3c24xx
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2009-04-29 13:51:48 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2009-04-30 08:24:24 -0400
commit09aa60df92a9c5ff00e156c0dbc79f166d406a7f (patch)
tree24e7d600294f9bdae23cf2ff8eedddc1820b95e9 /sound/soc/s3c24xx
parent72e31981a4e91f84c5b5e8994f5d25b1cf22b6cf (diff)
ASoC: Fix error message formatting in s3c64xx-i2s driver
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/s3c24xx')
-rw-r--r--sound/soc/s3c24xx/s3c64xx-i2s.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/s3c24xx/s3c64xx-i2s.c b/sound/soc/s3c24xx/s3c64xx-i2s.c
index 1345fbdca700..7679f7bc79c3 100644
--- a/sound/soc/s3c24xx/s3c64xx-i2s.c
+++ b/sound/soc/s3c24xx/s3c64xx-i2s.c
@@ -215,7 +215,7 @@ static __devinit int s3c64xx_iis_dev_probe(struct platform_device *pdev)
215 215
216 i2s->iis_cclk = clk_get(&pdev->dev, "audio-bus"); 216 i2s->iis_cclk = clk_get(&pdev->dev, "audio-bus");
217 if (IS_ERR(i2s->iis_cclk)) { 217 if (IS_ERR(i2s->iis_cclk)) {
218 dev_err(&pdev->dev, "failed to get audio-bus"); 218 dev_err(&pdev->dev, "failed to get audio-bus\n");
219 ret = PTR_ERR(i2s->iis_cclk); 219 ret = PTR_ERR(i2s->iis_cclk);
220 goto err; 220 goto err;
221 } 221 }