diff options
author | Lionel Xu <Lionel.Xu@freescale.com> | 2011-10-24 12:34:26 +0800 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2012-01-09 21:03:48 +0800 |
commit | 014349b9cb0af6dee3c1c6119068ffff5d27303c (patch) | |
tree | 54804e515ce44fe8262828f8148030b6ef4b0962 /sound | |
parent | cf747a84c4686001954bd060d286631ab4f9edd6 (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.c | 4 |
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, }, |