Skip to content

Commit 16639d3

Browse files
Lucas Tanurebroonie
authored andcommitted
ASoC: cs35l41: Fix max number of TX channels
This device only has 4 TX channels. Fixes: fe1024d ("ASoC: cs35l41: Combine adjacent register writes") Signed-off-by: Lucas Tanure <tanureal@opensource.cirrus.com> Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com> Link: https://lore.kernel.org/r/20220303173059.269657-3-tanureal@opensource.cirrus.com Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 03a7895 commit 16639d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sound/soc/codecs/cs35l41.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1091,7 +1091,7 @@ static struct snd_soc_dai_driver cs35l41_dai[] = {
10911091
.capture = {
10921092
.stream_name = "AMP Capture",
10931093
.channels_min = 1,
1094-
.channels_max = 8,
1094+
.channels_max = 4,
10951095
.rates = SNDRV_PCM_RATE_KNOT,
10961096
.formats = CS35L41_TX_FORMATS,
10971097
},

0 commit comments

Comments
 (0)