diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-09-18 02:02:38 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-09-18 13:29:52 -0400 |
commit | 947ec14c7369a87625f03abaab5b3f4d33ac73ba (patch) | |
tree | e22941442db1600ee5f3026df6e755ef9e6062a2 | |
parent | 0dce49efc70536a8c3b4bb5354a71b727ba31b80 (diff) |
ASoC: rsnd: do error check after rsnd_channel_normalization()
SSI need to use rsnd_channel_normalization() for TDM-split mode,
thus, channel check need to do after that.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/874l1aw39d.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/sh/rcar/ssi.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sound/soc/sh/rcar/ssi.c b/sound/soc/sh/rcar/ssi.c index f6a7466622ea..fc5d089868df 100644 --- a/sound/soc/sh/rcar/ssi.c +++ b/sound/soc/sh/rcar/ssi.c | |||
@@ -286,6 +286,11 @@ static int rsnd_ssi_master_clk_start(struct rsnd_mod *mod, | |||
286 | if (rsnd_ssi_is_multi_slave(mod, io)) | 286 | if (rsnd_ssi_is_multi_slave(mod, io)) |
287 | return 0; | 287 | return 0; |
288 | 288 | ||
289 | if (rsnd_runtime_is_tdm_split(io)) | ||
290 | chan = rsnd_io_converted_chan(io); | ||
291 | |||
292 | chan = rsnd_channel_normalization(chan); | ||
293 | |||
289 | if (ssi->usrcnt > 0) { | 294 | if (ssi->usrcnt > 0) { |
290 | if (ssi->rate != rate) { | 295 | if (ssi->rate != rate) { |
291 | dev_err(dev, "SSI parent/child should use same rate\n"); | 296 | dev_err(dev, "SSI parent/child should use same rate\n"); |
@@ -300,11 +305,6 @@ static int rsnd_ssi_master_clk_start(struct rsnd_mod *mod, | |||
300 | return 0; | 305 | return 0; |
301 | } | 306 | } |
302 | 307 | ||
303 | if (rsnd_runtime_is_tdm_split(io)) | ||
304 | chan = rsnd_io_converted_chan(io); | ||
305 | |||
306 | chan = rsnd_channel_normalization(chan); | ||
307 | |||
308 | main_rate = rsnd_ssi_clk_query(rdai, rate, chan, &idx); | 308 | main_rate = rsnd_ssi_clk_query(rdai, rate, chan, &idx); |
309 | if (!main_rate) { | 309 | if (!main_rate) { |
310 | dev_err(dev, "unsupported clock rate\n"); | 310 | dev_err(dev, "unsupported clock rate\n"); |