Commit ba2b87f5 authored by Jassi Brar's avatar Jassi Brar Committed by Mark Brown

ASoC: Fixed arguments passed to SMDK64xx set_pll

Corrected the order of 'source' and 'pll_id' arguments.
Signed-off-by: default avatarJassi Brar <jassi.brar@samsung.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 7aae816d
...@@ -115,7 +115,7 @@ static int smdk64xx_hw_params(struct snd_pcm_substream *substream, ...@@ -115,7 +115,7 @@ static int smdk64xx_hw_params(struct snd_pcm_substream *substream,
if (ret < 0) if (ret < 0)
return ret; return ret;
ret = snd_soc_dai_set_pll(codec_dai, 0, WM8580_PLLA, ret = snd_soc_dai_set_pll(codec_dai, WM8580_PLLA, 0,
SMDK64XX_WM8580_FREQ, pll_out); SMDK64XX_WM8580_FREQ, pll_out);
if (ret < 0) if (ret < 0)
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment