diff options
author | Mark Brown | 2012-04-09 19:38:31 +0100 |
---|---|---|
committer | Mark Brown | 2012-04-19 14:10:19 +0100 |
commit | 5f6ac59f7019c568f6657707efe210ab92e61b9c (patch) | |
tree | b00f30c64e8495e6d80e86e5517f6e13a289bc27 /sound/soc | |
parent | ec2e3031b65f23f66840b5c89c4b83076831a435 (diff) |
ASoC: wm1250-ev1: Support stereo
Springbank can support stereo, though it is primarily intended for mono
use cases.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/codecs/wm1250-ev1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/wm1250-ev1.c b/sound/soc/codecs/wm1250-ev1.c index e7a599a78170..0766b5fabae7 100644 --- a/sound/soc/codecs/wm1250-ev1.c +++ b/sound/soc/codecs/wm1250-ev1.c @@ -84,14 +84,14 @@ static struct snd_soc_dai_driver wm1250_ev1_dai = { .playback = { .stream_name = "Playback", .channels_min = 1, - .channels_max = 1, + .channels_max = 2, .rates = SNDRV_PCM_RATE_8000, .formats = SNDRV_PCM_FMTBIT_S16_LE, }, .capture = { .stream_name = "Capture", .channels_min = 1, - .channels_max = 1, + .channels_max = 2, .rates = SNDRV_PCM_RATE_8000, .formats = SNDRV_PCM_FMTBIT_S16_LE, }, |