aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/omap/omap-dmic.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/omap/omap-dmic.c')
-rw-r--r--sound/soc/omap/omap-dmic.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sound/soc/omap/omap-dmic.c b/sound/soc/omap/omap-dmic.c
index 0855c1cfa7fd..4dcb5a7e40e8 100644
--- a/sound/soc/omap/omap-dmic.c
+++ b/sound/soc/omap/omap-dmic.c
@@ -113,12 +113,10 @@ static int omap_dmic_dai_startup(struct snd_pcm_substream *substream,
113 113
114 mutex_lock(&dmic->mutex); 114 mutex_lock(&dmic->mutex);
115 115
116 if (!dai->active) { 116 if (!dai->active)
117 snd_pcm_hw_constraint_msbits(substream->runtime, 0, 32, 24);
118 dmic->active = 1; 117 dmic->active = 1;
119 } else { 118 else
120 ret = -EBUSY; 119 ret = -EBUSY;
121 }
122 120
123 mutex_unlock(&dmic->mutex); 121 mutex_unlock(&dmic->mutex);
124 122
@@ -445,6 +443,7 @@ static struct snd_soc_dai_driver omap_dmic_dai = {
445 .channels_max = 6, 443 .channels_max = 6,
446 .rates = SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_192000, 444 .rates = SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_192000,
447 .formats = SNDRV_PCM_FMTBIT_S32_LE, 445 .formats = SNDRV_PCM_FMTBIT_S32_LE,
446 .sig_bits = 24,
448 }, 447 },
449 .ops = &omap_dmic_dai_ops, 448 .ops = &omap_dmic_dai_ops,
450}; 449};