diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2010-11-04 17:05:45 +0100 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-11-05 09:16:16 -0400 |
commit | 22e2fda5660cdf62513acabdb5c82a5af415f838 (patch) | |
tree | af9b34208d961ec32048e56bc7ae384780777c28 /sound/soc/imx | |
parent | a8ea54da5e47bde9ba19230bb3609b0502a288c3 (diff) | |
download | kernel_samsung_smdk4412-22e2fda5660cdf62513acabdb5c82a5af415f838.zip kernel_samsung_smdk4412-22e2fda5660cdf62513acabdb5c82a5af415f838.tar.gz kernel_samsung_smdk4412-22e2fda5660cdf62513acabdb5c82a5af415f838.tar.bz2 |
ASoC: i.MX: we can do mono
Whether we can do mono or not depends on the codec. No need
to limit this in the ssi driver.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/imx')
-rw-r--r-- | sound/soc/imx/imx-ssi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/imx/imx-ssi.c b/sound/soc/imx/imx-ssi.c index d2d98c7..ad21f81 100644 --- a/sound/soc/imx/imx-ssi.c +++ b/sound/soc/imx/imx-ssi.c @@ -456,13 +456,13 @@ static int imx_ssi_dai_probe(struct snd_soc_dai *dai) static struct snd_soc_dai_driver imx_ssi_dai = { .probe = imx_ssi_dai_probe, .playback = { - .channels_min = 2, + .channels_min = 1, .channels_max = 2, .rates = SNDRV_PCM_RATE_8000_96000, .formats = SNDRV_PCM_FMTBIT_S16_LE, }, .capture = { - .channels_min = 2, + .channels_min = 1, .channels_max = 2, .rates = SNDRV_PCM_RATE_8000_96000, .formats = SNDRV_PCM_FMTBIT_S16_LE, |