diff options
author | Michael Sit Wei Hong <michael.wei.hong.sit@intel.com> | 2020-08-12 12:46:30 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-08-17 18:36:23 +0300 |
commit | d1c859d314d87c6f4dc09c3d7cf6f3ec9f44bcc5 (patch) | |
tree | f0149143f4a1c0c42349ee03b6640a24eb8a356a /sound/soc/codecs/tlv320aic32x4.c | |
parent | dcd79364bff36ce1341a59be8142ded5b7da7d19 (diff) | |
download | linux-d1c859d314d87c6f4dc09c3d7cf6f3ec9f44bcc5.tar.xz |
ASoC: codec: tlv3204: Increased maximum supported channels
Increased maximum supported channel to 8 channels for audio capture
running in TDM mode.
Signed-off-by: Michael Sit Wei Hong <michael.wei.hong.sit@intel.com>
Reviewed-by: Sia Jee Heng <jee.heng.sia@intel.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20200812094631.4698-3-michael.wei.hong.sit@intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/tlv320aic32x4.c')
-rw-r--r-- | sound/soc/codecs/tlv320aic32x4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/tlv320aic32x4.c b/sound/soc/codecs/tlv320aic32x4.c index e3d12a7ea07a..6c2338ea5d8d 100644 --- a/sound/soc/codecs/tlv320aic32x4.c +++ b/sound/soc/codecs/tlv320aic32x4.c @@ -888,7 +888,7 @@ static struct snd_soc_dai_driver aic32x4_dai = { .capture = { .stream_name = "Capture", .channels_min = 1, - .channels_max = 2, + .channels_max = 8, .rates = AIC32X4_RATES, .formats = AIC32X4_FORMATS,}, .ops = &aic32x4_ops, |