Commit 7df6f255 authored by Peter Ujfalusi's avatar Peter Ujfalusi Committed by Mark Brown

ASoC: omap-dmic: Use core to set the msbits constraint

Core can set the msbits constraint in behalf of the dai.
Signed-off-by: default avatarPeter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 8819f65c
...@@ -113,12 +113,10 @@ static int omap_dmic_dai_startup(struct snd_pcm_substream *substream, ...@@ -113,12 +113,10 @@ static int omap_dmic_dai_startup(struct snd_pcm_substream *substream,
mutex_lock(&dmic->mutex); mutex_lock(&dmic->mutex);
if (!dai->active) { if (!dai->active)
snd_pcm_hw_constraint_msbits(substream->runtime, 0, 32, 24);
dmic->active = 1; dmic->active = 1;
} else { else
ret = -EBUSY; ret = -EBUSY;
}
mutex_unlock(&dmic->mutex); mutex_unlock(&dmic->mutex);
...@@ -445,6 +443,7 @@ static struct snd_soc_dai_driver omap_dmic_dai = { ...@@ -445,6 +443,7 @@ static struct snd_soc_dai_driver omap_dmic_dai = {
.channels_max = 6, .channels_max = 6,
.rates = SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_192000, .rates = SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_192000,
.formats = SNDRV_PCM_FMTBIT_S32_LE, .formats = SNDRV_PCM_FMTBIT_S32_LE,
.sig_bits = 24,
}, },
.ops = &omap_dmic_dai_ops, .ops = &omap_dmic_dai_ops,
}; };
......
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