diff options
author | Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com> | 2018-07-27 04:37:28 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-07-30 13:02:31 +0200 |
commit | 8fc9983db199bb397d48e32a6400765b70f1995a (patch) | |
tree | 37030b1c0c9694ae84c8727c25af9bf57939cee3 /sound/soc/uniphier/aio-ld11.c | |
parent | ASoC: sirf: Fix potential NULL pointer dereference (diff) | |
download | linux-8fc9983db199bb397d48e32a6400765b70f1995a.tar.xz linux-8fc9983db199bb397d48e32a6400765b70f1995a.zip |
ASoC: uniphier: add support for multichannel output
This patch adds multichannel PCM output support for LD11/LD20.
Currently driver tested and supported only 2ch, 6ch, and 8ch.
Signed-off-by: Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/uniphier/aio-ld11.c')
-rw-r--r-- | sound/soc/uniphier/aio-ld11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/uniphier/aio-ld11.c b/sound/soc/uniphier/aio-ld11.c index ab04d3331be9..de962df245ba 100644 --- a/sound/soc/uniphier/aio-ld11.c +++ b/sound/soc/uniphier/aio-ld11.c @@ -286,7 +286,7 @@ static struct snd_soc_dai_driver uniphier_aio_dai_ld11[] = { .formats = SNDRV_PCM_FMTBIT_S32_LE, .rates = SNDRV_PCM_RATE_48000, .channels_min = 2, - .channels_max = 2, + .channels_max = 8, }, .ops = &uniphier_aio_i2s_ops, }, |