Skip to content

Commit

Permalink
ASoC: Fixed arguments passed to SMDK64xx set_pll
Browse files Browse the repository at this point in the history
Corrected the order of 'source' and 'pll_id' arguments.

Signed-off-by: Jassi Brar <jassi.brar@samsung.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Jassi Brar authored and Mark Brown committed Nov 12, 2009
1 parent 7aae816 commit ba2b87f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/s3c24xx/smdk64xx_wm8580.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ static int smdk64xx_hw_params(struct snd_pcm_substream *substream,
if (ret < 0)
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);
if (ret < 0)
return ret;
Expand Down

0 comments on commit ba2b87f

Please sign in to comment.