diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-10-01 02:40:32 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-10-01 02:42:27 -0400 |
commit | 140318aaa924ce9664ff59366993228cf1547f1d (patch) | |
tree | 3cf0b9460ca99c188c6d22da2959d6fc0278a445 /sound/soc/s3c24xx/neo1973_wm8753.c | |
parent | bb26276744a80d066681836f4d49c70010b129d6 (diff) |
ASoC: Fix snd_soc_dai_set_pll() calls in neo1973_*.c
Fix the missing argument of snd_soc_dai_set_pll() in neo1973_*.c,
which was forgotten in the commit 85488037bb.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/soc/s3c24xx/neo1973_wm8753.c')
-rw-r--r-- | sound/soc/s3c24xx/neo1973_wm8753.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/s3c24xx/neo1973_wm8753.c b/sound/soc/s3c24xx/neo1973_wm8753.c index 16009eba9cb..c9b794843a7 100644 --- a/sound/soc/s3c24xx/neo1973_wm8753.c +++ b/sound/soc/s3c24xx/neo1973_wm8753.c | |||
@@ -153,7 +153,7 @@ static int neo1973_hifi_hw_free(struct snd_pcm_substream *substream) | |||
153 | pr_debug("Entered %s\n", __func__); | 153 | pr_debug("Entered %s\n", __func__); |
154 | 154 | ||
155 | /* disable the PLL */ | 155 | /* disable the PLL */ |
156 | return snd_soc_dai_set_pll(codec_dai, WM8753_PLL1, 0, 0); | 156 | return snd_soc_dai_set_pll(codec_dai, WM8753_PLL1, 0, 0, 0); |
157 | } | 157 | } |
158 | 158 | ||
159 | /* | 159 | /* |
@@ -203,7 +203,7 @@ static int neo1973_voice_hw_params(struct snd_pcm_substream *substream, | |||
203 | return ret; | 203 | return ret; |
204 | 204 | ||
205 | /* configue and enable PLL for 12.288MHz output */ | 205 | /* configue and enable PLL for 12.288MHz output */ |
206 | ret = snd_soc_dai_set_pll(codec_dai, WM8753_PLL2, | 206 | ret = snd_soc_dai_set_pll(codec_dai, WM8753_PLL2, 0, |
207 | iis_clkrate / 4, 12288000); | 207 | iis_clkrate / 4, 12288000); |
208 | if (ret < 0) | 208 | if (ret < 0) |
209 | return ret; | 209 | return ret; |
@@ -219,7 +219,7 @@ static int neo1973_voice_hw_free(struct snd_pcm_substream *substream) | |||
219 | pr_debug("Entered %s\n", __func__); | 219 | pr_debug("Entered %s\n", __func__); |
220 | 220 | ||
221 | /* disable the PLL */ | 221 | /* disable the PLL */ |
222 | return snd_soc_dai_set_pll(codec_dai, WM8753_PLL2, 0, 0); | 222 | return snd_soc_dai_set_pll(codec_dai, WM8753_PLL2, 0, 0, 0); |
223 | } | 223 | } |
224 | 224 | ||
225 | static struct snd_soc_ops neo1973_voice_ops = { | 225 | static struct snd_soc_ops neo1973_voice_ops = { |