Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 25ea524b authored by Scott Jiang's avatar Scott Jiang Committed by Mark Brown
Browse files

ASoC: ad193x: fix system clock



system clock is 24.576MHz instead of 12.288MHz

Signed-off-by: default avatarScott Jiang <scott.jiang.linux@gmail.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 95c93d85
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}