aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc
diff options
context:
space:
mode:
authorMisael Lopez Cruz <misael.lopez@ti.com>2012-04-25 02:11:42 -0500
committerZiyann <jaraidaniel@gmail.com>2014-10-01 13:00:03 +0200
commit46f54be05c42fb72b1eac9ba1ca3d0b50dce3463 (patch)
tree4a9a127bfc08422f1ce6dd54ce2e68be55225ea8 /sound/soc
parent2834b487f04cb7981640cc3f794a77956136ee11 (diff)
downloadkernel_samsung_tuna-46f54be05c42fb72b1eac9ba1ca3d0b50dce3463.zip
kernel_samsung_tuna-46f54be05c42fb72b1eac9ba1ca3d0b50dce3463.tar.gz
kernel_samsung_tuna-46f54be05c42fb72b1eac9ba1ca3d0b50dce3463.tar.bz2
ASoC: OMAP ABE: Fix MM_UL format capability
MM_UL port supports up to 6 channels, 32-bits per sample, 16-bits per sample is no longer supported hence removed from DAI capabilities. Change-Id: I1c9940609e5f087f5df83b9a8c6261d2306512dd Signed-off-by: Misael Lopez Cruz <misael.lopez@ti.com>
Diffstat (limited to 'sound/soc')
-rw-r--r--sound/soc/omap/omap-abe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/omap/omap-abe.c b/sound/soc/omap/omap-abe.c
index 60a5cfc..33054f3 100644
--- a/sound/soc/omap/omap-abe.c
+++ b/sound/soc/omap/omap-abe.c
@@ -1373,9 +1373,9 @@ static struct snd_soc_dai_driver omap_abe_dai[] = {
.capture = {
.stream_name = "MultiMedia1 Capture",
.channels_min = 2,
- .channels_max = 8,
+ .channels_max = 6,
.rates = SNDRV_PCM_RATE_48000,
- .formats = OMAP_ABE_FORMATS,
+ .formats = SNDRV_PCM_FMTBIT_S32_LE,
},
.ops = &omap_abe_dai_ops,
},