summaryrefslogtreecommitdiff
path: root/sound/soc
diff options
context:
space:
mode:
authorDaniel Kochmanski <dkochmanski@antmicro.com>2014-06-27 11:24:59 +0200
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2014-07-08 14:51:35 +0200
commitd9920889422e45f0147e3d4caa0b74d03563faa1 (patch)
tree4951a256f818c3986af86d2852a6683a00276517 /sound/soc
parent1db0031c0f2416f2748f91891f2ddb62a244383d (diff)
Linux playback channel fix
Diffstat (limited to 'sound/soc')
-rw-r--r--sound/soc/tegra/tegra20_ac97.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/tegra/tegra20_ac97.c b/sound/soc/tegra/tegra20_ac97.c
index 9b7ddb667860..8a57bcc26de7 100644
--- a/sound/soc/tegra/tegra20_ac97.c
+++ b/sound/soc/tegra/tegra20_ac97.c
@@ -438,7 +438,7 @@ struct snd_soc_dai_driver tegra20_ac97_dai[] = {
//.resume
.playback = {
// .stream_name = "AC97 PCM Playback",
- .channels_min = 1,
+ .channels_min = 2,
.channels_max = 2,
.rates = AC97_SAMPLE_RATES,
#ifndef TEGRA_AC97_32BIT_PLAYBACK
@@ -449,7 +449,7 @@ struct snd_soc_dai_driver tegra20_ac97_dai[] = {
},
.capture = {
// .stream_name = "AC97 PCM Recording",
- .channels_min = 1,
+ .channels_min = 2,
.channels_max = 2,
.rates = AC97_SAMPLE_RATES,
.formats = SNDRV_PCM_FMTBIT_S32_LE,