diff options
author | Shengjiu Wang <shengjiu.wang@freescale.com> | 2016-07-22 18:39:38 +0800 |
---|---|---|
committer | Anson Huang <Anson.Huang@nxp.com> | 2017-06-09 22:19:46 +0800 |
commit | f9bbed9a20694452425645f0f01c7f01c7bbdce1 (patch) | |
tree | c8bb035d8ac48f463ff9bc7714972bd2d43fe05b /sound | |
parent | 18758f15519988bcbc7794fef05ddaa8acb9cf60 (diff) |
ASoC: fsl_sai: expand the channel_max to 32
sai can support 32 channel in maximum.
Signed-off-by: Shengjiu Wang <shengjiu.wang@freescale.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/fsl/fsl_sai.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/fsl/fsl_sai.c b/sound/soc/fsl/fsl_sai.c index a295ceedceae..12c15ab5ed19 100644 --- a/sound/soc/fsl/fsl_sai.c +++ b/sound/soc/fsl/fsl_sai.c @@ -779,7 +779,7 @@ static struct snd_soc_dai_driver fsl_sai_dai = { .playback = { .stream_name = "CPU-Playback", .channels_min = 1, - .channels_max = 2, + .channels_max = 32, .rate_min = 8000, .rate_max = 192000, .rates = SNDRV_PCM_RATE_KNOT, @@ -788,7 +788,7 @@ static struct snd_soc_dai_driver fsl_sai_dai = { .capture = { .stream_name = "CPU-Capture", .channels_min = 1, - .channels_max = 2, + .channels_max = 32, .rate_min = 8000, .rate_max = 192000, .rates = SNDRV_PCM_RATE_KNOT, |