Commit d8dd032d authored by Peter Ujfalusi's avatar Peter Ujfalusi Committed by Mark Brown

ASoC: twl6040: Fix the number of channels for vibra

Only mono audio can be used for vibra (DL4 channel).
Signed-off-by: default avatarPeter Ujfalusi <peter.ujfalusi@ti.com>
Acked-by: default avatarLiam Girdwood <lrg@ti.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 2c27ff41
...@@ -1449,8 +1449,8 @@ static struct snd_soc_dai_driver twl6040_dai[] = { ...@@ -1449,8 +1449,8 @@ static struct snd_soc_dai_driver twl6040_dai[] = {
.name = "twl6040-vib", .name = "twl6040-vib",
.playback = { .playback = {
.stream_name = "Vibra Playback", .stream_name = "Vibra Playback",
.channels_min = 2, .channels_min = 1,
.channels_max = 2, .channels_max = 1,
.rates = SNDRV_PCM_RATE_CONTINUOUS, .rates = SNDRV_PCM_RATE_CONTINUOUS,
.formats = TWL6040_FORMATS, .formats = TWL6040_FORMATS,
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment