Skip to content

Commit

Permalink
ASoC: pxa/raumfeld: adopt new snd_soc_dai_set_pll() API
Browse files Browse the repository at this point in the history
ALSA's for-2.6.33 branch has a new source argument to
snd_soc_dai_set_pll().

Signed-off-by: Daniel Mack <[email protected]>
Acked-by: Liam Girdwood <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
  • Loading branch information
Daniel Mack authored and broonie committed Nov 30, 2009
1 parent 785d1c4 commit a649d1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sound/soc/pxa/raumfeld.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit a649d1f

Please sign in to comment.