diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2012-09-18 13:03:54 -0300 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-09-25 13:52:42 +0100 |
commit | f76fe059dd5034c55c560d9e0005e19481843726 (patch) | |
tree | d99c26078983600312ba7b8dc6433a5034e831b2 /sound | |
parent | 2ef39e606bb43d6041b6d820e2a9156110a82d21 (diff) | |
download | op-kernel-dev-f76fe059dd5034c55c560d9e0005e19481843726.zip op-kernel-dev-f76fe059dd5034c55c560d9e0005e19481843726.tar.gz |
ASoC: cs4270: Remove mono support
According to cs4270 datasheet, there is no reference to mono mode.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/cs4270.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/cs4270.c b/sound/soc/codecs/cs4270.c index 815b53b..8e47798 100644 --- a/sound/soc/codecs/cs4270.c +++ b/sound/soc/codecs/cs4270.c @@ -459,7 +459,7 @@ static struct snd_soc_dai_driver cs4270_dai = { .name = "cs4270-hifi", .playback = { .stream_name = "Playback", - .channels_min = 1, + .channels_min = 2, .channels_max = 2, .rates = SNDRV_PCM_RATE_CONTINUOUS, .rate_min = 4000, @@ -468,7 +468,7 @@ static struct snd_soc_dai_driver cs4270_dai = { }, .capture = { .stream_name = "Capture", - .channels_min = 1, + .channels_min = 2, .channels_max = 2, .rates = SNDRV_PCM_RATE_CONTINUOUS, .rate_min = 4000, |