Skip to content

Commit

Permalink
ASoC: ad193x: fix system clock
Browse files Browse the repository at this point in the history
system clock is 24.576MHz instead of 12.288MHz

Signed-off-by: Scott Jiang <scott.jiang.linux@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Scott Jiang authored and Mark Brown committed Aug 15, 2011
1 parent 95c93d8 commit 25ea524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/blackfin/bf5xx-ad193x.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ static int bf5xx_ad193x_hw_params(struct snd_pcm_substream *substream,

switch (params_rate(params)) {
case 48000:
clk = 12288000;
clk = 24576000;
break;
}

Expand Down

0 comments on commit 25ea524

Please sign in to comment.