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

Commit 1ceeab26 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown
Browse files

ASoC: rsnd: tidyup DMA start/stop timing on SSI



Current DMA starts after SSI, and stops before SSI. but we need
to reverse these order. Otherwise, under/over run error might happen.

Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 765ae7c8
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -535,10 +535,10 @@ static int rsnd_ssi_dma_start(struct rsnd_mod *mod,
{
	struct rsnd_dma *dma = rsnd_mod_to_dma(mod);

	rsnd_ssi_start(mod, priv);

	rsnd_dma_start(dma);

	rsnd_ssi_start(mod, priv);

	return 0;
}

@@ -547,10 +547,10 @@ static int rsnd_ssi_dma_stop(struct rsnd_mod *mod,
{
	struct rsnd_dma *dma = rsnd_mod_to_dma(mod);

	rsnd_dma_stop(dma);

	rsnd_ssi_stop(mod, priv);

	rsnd_dma_stop(dma);

	return 0;
}