diff options
author | Daniel Mack <daniel@caiaq.de> | 2009-11-30 14:06:37 +0100 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-11-30 13:27:29 +0000 |
commit | a649d1fcc9bd2299cb06b6594fabb429fa50f174 (patch) | |
tree | 105648f98b2bec5e8df45443b61fba8a68698cef /sound | |
parent | 785d1c45ce11820d5838eb6399caa0ac98c836cf (diff) | |
download | linux-3.10-a649d1fcc9bd2299cb06b6594fabb429fa50f174.tar.gz linux-3.10-a649d1fcc9bd2299cb06b6594fabb429fa50f174.tar.bz2 linux-3.10-a649d1fcc9bd2299cb06b6594fabb429fa50f174.zip |
ASoC: pxa/raumfeld: adopt new snd_soc_dai_set_pll() API
ALSA's for-2.6.33 branch has a new source argument to
snd_soc_dai_set_pll().
Signed-off-by: Daniel Mack <daniel@caiaq.de>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/pxa/raumfeld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/pxa/raumfeld.c b/sound/soc/pxa/raumfeld.c index f272269c05d..acfce1c0f1c 100644 --- a/sound/soc/pxa/raumfeld.c +++ b/sound/soc/pxa/raumfeld.c @@ -116,7 +116,7 @@ static int raumfeld_cs4270_hw_params(struct snd_pcm_substream *substream, return ret; /* setup the CPU DAI */ - ret = snd_soc_dai_set_pll(cpu_dai, 0, 0, clk); + ret = snd_soc_dai_set_pll(cpu_dai, 0, 0, 0, clk); if (ret < 0) return ret; @@ -205,7 +205,7 @@ static int raumfeld_ak4104_hw_params(struct snd_pcm_substream *substream, return ret; /* setup the CPU DAI */ - ret = snd_soc_dai_set_pll(cpu_dai, 0, 0, clk); + ret = snd_soc_dai_set_pll(cpu_dai, 0, 0, 0, clk); if (ret < 0) return ret; |