summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorLionel Xu <Lionel.Xu@freescale.com>2011-10-24 12:34:26 +0800
committerLionel Xu <Lionel.Xu@freescale.com>2011-11-01 12:37:10 +0800
commite2916cc6c922309df55a10d89893280449e9da46 (patch)
tree1dcc793628eb187f4306a49073768ad12b75d930 /sound
parent6eaf11ab640532df055caddadb1de2a7a6ac687b (diff)
ENGR00156869 ESAI: Support 8-channel playbacking and 6-channel recording
To make cpu_dai esai support 8/6 channel playback/recording. Signed-off-by: Lionel Xu <Lionel.Xu@freescale.com>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/imx/imx-esai.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/imx/imx-esai.c b/sound/soc/imx/imx-esai.c
index a3c5c44983e7..d3cf553bee2e 100644
--- a/sound/soc/imx/imx-esai.c
+++ b/sound/soc/imx/imx-esai.c
@@ -554,13 +554,13 @@ static struct snd_soc_dai_driver imx_esai_dai = {
.resume = imx_esai_resume,
.playback = {
.channels_min = 1,
- .channels_max = 6,
+ .channels_max = 12,
.rates = IMX_ESAI_RATES,
.formats = IMX_ESAI_FORMATS,
},
.capture = {
.channels_min = 1,
- .channels_max = 4,
+ .channels_max = 8,
.rates = IMX_ESAI_RATES,
.formats = IMX_ESAI_FORMATS,
},