diff options
author | Daniel Mack <zonque@gmail.com> | 2014-08-13 23:51:06 +0400 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2014-09-17 18:55:08 +0400 |
commit | d45c7fbe6a5cc48f8f666c15cbc2322384d3c56d (patch) | |
tree | ca0fbbf8238caf729b70337cfbeb9421a6db8147 | |
parent | a9543fdd9338266f196d801aafdb2451fb6393f8 (diff) | |
download | linux-d45c7fbe6a5cc48f8f666c15cbc2322384d3c56d.tar.xz |
ASoC: pxa-ssp: drop SNDRV_PCM_FMTBIT_S24_LE
commit 9301503af016eb537ccce76adec0c1bb5c84871e upstream.
This mode is unsupported, as the DMA controller can't do zero-padding
of samples.
Signed-off-by: Daniel Mack <zonque@gmail.com>
Reported-by: Johannes Stezenbach <js@sig21.net>
Signed-off-by: Mark Brown <broonie@linaro.org>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
-rw-r--r-- | sound/soc/pxa/pxa-ssp.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sound/soc/pxa/pxa-ssp.c b/sound/soc/pxa/pxa-ssp.c index e4558e31a9ee..6c6b35e471c8 100644 --- a/sound/soc/pxa/pxa-ssp.c +++ b/sound/soc/pxa/pxa-ssp.c @@ -767,9 +767,7 @@ static int pxa_ssp_remove(struct snd_soc_dai *dai) SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_64000 | \ SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000) -#define PXA_SSP_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\ - SNDRV_PCM_FMTBIT_S24_LE | \ - SNDRV_PCM_FMTBIT_S32_LE) +#define PXA_SSP_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE) static const struct snd_soc_dai_ops pxa_ssp_dai_ops = { .startup = pxa_ssp_startup, |