ASoC: tlv320aic31xx: do not declare support for mono DAI
authorNikita Yushchenko <nikita.yoush@cogentembedded.com>
Tue, 27 Sep 2016 08:30:15 +0000 (11:30 +0300)
committerMark Brown <broonie@kernel.org>
Tue, 27 Sep 2016 16:34:48 +0000 (09:34 -0700)
This hardware supports only 2-channel DAI, even mono ADC digital output
has two channels with the same data.

Having min_channels=1 results in broken playback of mono files in setups
where CPU DAI supports mono.

Signed-off-by: Nikita Yushchenko <nikita.yoush@cogentembedded.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/tlv320aic31xx.c

index 725173b..be1a64b 100644 (file)
@@ -1213,7 +1213,7 @@ static struct snd_soc_dai_driver dac31xx_dai_driver[] = {
                .name = "tlv32dac31xx-hifi",
                .playback = {
                        .stream_name     = "Playback",
-                       .channels_min    = 1,
+                       .channels_min    = 2,
                        .channels_max    = 2,
                        .rates           = AIC31XX_RATES,
                        .formats         = AIC31XX_FORMATS,
@@ -1228,14 +1228,14 @@ static struct snd_soc_dai_driver aic31xx_dai_driver[] = {
                .name = "tlv320aic31xx-hifi",
                .playback = {
                        .stream_name     = "Playback",
-                       .channels_min    = 1,
+                       .channels_min    = 2,
                        .channels_max    = 2,
                        .rates           = AIC31XX_RATES,
                        .formats         = AIC31XX_FORMATS,
                },
                .capture = {
                        .stream_name     = "Capture",
-                       .channels_min    = 1,
+                       .channels_min    = 2,
                        .channels_max    = 2,
                        .rates           = AIC31XX_RATES,
                        .formats         = AIC31XX_FORMATS,