From: Jassi Brar Date: Wed, 11 Nov 2009 05:02:18 +0000 (+0900) Subject: ASoC: Fixed arguments passed to SMDK64xx set_pll X-Git-Tag: Ubuntu-5.13.0-19.19~33137^2~46 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=ba2b87f5a93659a28cc4fb812ccd7b4146ac3aa9;p=mirror_ubuntu-jammy-kernel.git ASoC: Fixed arguments passed to SMDK64xx set_pll Corrected the order of 'source' and 'pll_id' arguments. Signed-off-by: Jassi Brar Signed-off-by: Mark Brown --- diff --git a/sound/soc/s3c24xx/smdk64xx_wm8580.c b/sound/soc/s3c24xx/smdk64xx_wm8580.c index cb8a9161b643..216dd1e8e378 100644 --- a/sound/soc/s3c24xx/smdk64xx_wm8580.c +++ b/sound/soc/s3c24xx/smdk64xx_wm8580.c @@ -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;