Commit 6ce534aa authored by Jassi Brar's avatar Jassi Brar Committed by Mark Brown

ASoC: Samsung: Set default rclk source rate

Since the rclk_srcrate is cleared upon startup, it should be
initialized upon second and later 'open' calls to the device
with same root-clock source. The bug is otherwise visible in
Codec-Slave mode.
Signed-off-by: default avatarJassi Brar <jassi.brar@samsung.com>
Acked-by: default avatarLiam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 67c7efad
...@@ -525,6 +525,8 @@ static int i2s_set_sysclk(struct snd_soc_dai *dai, ...@@ -525,6 +525,8 @@ static int i2s_set_sysclk(struct snd_soc_dai *dai,
clk_disable(i2s->op_clk); clk_disable(i2s->op_clk);
clk_put(i2s->op_clk); clk_put(i2s->op_clk);
} else { } else {
i2s->rclk_srcrate =
clk_get_rate(i2s->op_clk);
return 0; return 0;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment