diff options
author | Daniel Kochmanski <dkochmanski@antmicro.com> | 2014-06-27 11:24:59 +0200 |
---|---|---|
committer | Marcel Ziswiler <marcel.ziswiler@toradex.com> | 2014-07-08 14:51:35 +0200 |
commit | d9920889422e45f0147e3d4caa0b74d03563faa1 (patch) | |
tree | 4951a256f818c3986af86d2852a6683a00276517 /sound | |
parent | 1db0031c0f2416f2748f91891f2ddb62a244383d (diff) |
Linux playback channel fix
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/tegra/tegra20_ac97.c | 4 |
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, |