Commit d3b89421 authored by Mark Brown's avatar Mark Brown

ASoC: Fix Zylonite voice interface stereo configurations

We always run in the first timeslot of one.
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 8056d9bb
...@@ -127,9 +127,8 @@ static int zylonite_voice_hw_params(struct snd_pcm_substream *substream, ...@@ -127,9 +127,8 @@ static int zylonite_voice_hw_params(struct snd_pcm_substream *substream,
if (ret < 0) if (ret < 0)
return ret; return ret;
ret = snd_soc_dai_set_tdm_slot(cpu_dai, /* We're not really in network mode but the emulation wants this. */
params_channels(params), ret = snd_soc_dai_set_tdm_slot(cpu_dai, 1, 1);
params_channels(params));
if (ret < 0) if (ret < 0)
return ret; return ret;
......
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