From: Jassi Brar Date: Fri, 6 Nov 2009 09:00:24 +0000 (+0900) Subject: ASoC: S3C64XX I2S: Enable audio-bus clock X-Git-Tag: v2.6.32-rc8~9^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6fc786d5034ed7ce2d43c459211137de6d99dd28;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git ASoC: S3C64XX I2S: Enable audio-bus clock Added the missing clk_enable after acquiring the 'audio-bus' clock. Signed-off-by: Jassi Brar Signed-off-by: Mark Brown --- diff --git a/sound/soc/s3c24xx/s3c64xx-i2s.c b/sound/soc/s3c24xx/s3c64xx-i2s.c index 3c06c40..105a77e 100644 --- a/sound/soc/s3c24xx/s3c64xx-i2s.c +++ b/sound/soc/s3c24xx/s3c64xx-i2s.c @@ -220,6 +220,8 @@ static __devinit int s3c64xx_iis_dev_probe(struct platform_device *pdev) goto err; } + clk_enable(i2s->iis_cclk); + ret = s3c_i2sv2_probe(pdev, dai, i2s, 0); if (ret) goto err_clk;