aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/soc/samsung/s3c2412-i2s.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/samsung/s3c2412-i2s.c b/sound/soc/samsung/s3c2412-i2s.c
index d9d27cc0657c..d6bc6dc0aafb 100644
--- a/sound/soc/samsung/s3c2412-i2s.c
+++ b/sound/soc/samsung/s3c2412-i2s.c
@@ -76,7 +76,7 @@ static int s3c2412_i2s_probe(struct snd_soc_dai *dai)
76 /* Set MPLL as the source for IIS CLK */ 76 /* Set MPLL as the source for IIS CLK */
77 77
78 clk_set_parent(s3c2412_i2s.iis_cclk, clk_get(NULL, "mpll")); 78 clk_set_parent(s3c2412_i2s.iis_cclk, clk_get(NULL, "mpll"));
79 clk_enable(s3c2412_i2s.iis_cclk); 79 clk_prepare_enable(s3c2412_i2s.iis_cclk);
80 80
81 s3c2412_i2s.iis_cclk = s3c2412_i2s.iis_pclk; 81 s3c2412_i2s.iis_cclk = s3c2412_i2s.iis_pclk;
82 82
@@ -89,7 +89,7 @@ static int s3c2412_i2s_probe(struct snd_soc_dai *dai)
89 89
90static int s3c2412_i2s_remove(struct snd_soc_dai *dai) 90static int s3c2412_i2s_remove(struct snd_soc_dai *dai)
91{ 91{
92 clk_disable(s3c2412_i2s.iis_cclk); 92 clk_disable_unprepare(s3c2412_i2s.iis_cclk);
93 93
94 return 0; 94 return 0;
95} 95}