diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2013-04-20 13:29:01 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-04-22 06:27:18 -0400 |
commit | 57364f9ae24c3a29163c23d5219bccef7bccc96a (patch) | |
tree | c7183bf9d24b655d585041045044c5763043ce88 /sound/soc/mxs | |
parent | d1e1406c6ed0b92200a7de2a09fbab65661dba3c (diff) |
ASoC: mxs-pcm: Set SNDRV_PCM_INFO_HALF_DUPLEX
The MXS SAIF is only half-duplex so set the SNDRV_PCM_INFO_HALF_DUPLEX flag for
the PCM in order to prevent playback and capture from running at the same time.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Tested-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/mxs')
-rw-r--r-- | sound/soc/mxs/mxs-pcm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/mxs/mxs-pcm.c b/sound/soc/mxs/mxs-pcm.c index 7bceb16d0fd9..907cdb1f989d 100644 --- a/sound/soc/mxs/mxs-pcm.c +++ b/sound/soc/mxs/mxs-pcm.c | |||
@@ -43,7 +43,8 @@ static struct snd_pcm_hardware snd_mxs_hardware = { | |||
43 | SNDRV_PCM_INFO_MMAP_VALID | | 43 | SNDRV_PCM_INFO_MMAP_VALID | |
44 | SNDRV_PCM_INFO_PAUSE | | 44 | SNDRV_PCM_INFO_PAUSE | |
45 | SNDRV_PCM_INFO_RESUME | | 45 | SNDRV_PCM_INFO_RESUME | |
46 | SNDRV_PCM_INFO_INTERLEAVED, | 46 | SNDRV_PCM_INFO_INTERLEAVED | |
47 | SNDRV_PCM_INFO_HALF_DUPLEX, | ||
47 | .formats = SNDRV_PCM_FMTBIT_S16_LE | | 48 | .formats = SNDRV_PCM_FMTBIT_S16_LE | |
48 | SNDRV_PCM_FMTBIT_S20_3LE | | 49 | SNDRV_PCM_FMTBIT_S20_3LE | |
49 | SNDRV_PCM_FMTBIT_S24_LE, | 50 | SNDRV_PCM_FMTBIT_S24_LE, |