diff options
author | Martin Povišer <povik+lin@cutebit.org> | 2022-08-08 16:12:44 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-08-08 20:44:40 +0100 |
commit | bf54d97a835dfe62d4d29e245e170c63d0089be7 (patch) | |
tree | d5f5fff5611eee87a907b6abcf1d500937f53574 | |
parent | e9ac31f0a5d0e246b046c20348954519f91a297f (diff) | |
download | linux-stable-bf54d97a835dfe62d4d29e245e170c63d0089be7.tar.gz linux-stable-bf54d97a835dfe62d4d29e245e170c63d0089be7.tar.bz2 linux-stable-bf54d97a835dfe62d4d29e245e170c63d0089be7.zip |
ASoC: tas2770: Allow mono streams
The part is a mono speaker amp, but it can do downmix and switch between
left and right channel, so the right channel range is 1 to 2.
Fixes: 1a476abc723e ("tas2770: add tas2770 smart PA kernel driver")
Signed-off-by: Martin Povišer <povik+lin@cutebit.org>
Link: https://lore.kernel.org/r/20220808141246.5749-3-povik+lin@cutebit.org
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/tas2770.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/tas2770.c b/sound/soc/codecs/tas2770.c index 46b0b31c0125..8812b975f70f 100644 --- a/sound/soc/codecs/tas2770.c +++ b/sound/soc/codecs/tas2770.c @@ -507,7 +507,7 @@ static struct snd_soc_dai_driver tas2770_dai_driver[] = { .id = 0, .playback = { .stream_name = "ASI1 Playback", - .channels_min = 2, + .channels_min = 1, .channels_max = 2, .rates = TAS2770_RATES, .formats = TAS2770_FORMATS, |