summaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/wm8524.c
diff options
context:
space:
mode:
authorShengjiu Wang <shengjiu.wang@nxp.com>2019-11-22 18:30:13 +0800
committerMark Brown <broonie@kernel.org>2020-05-04 19:23:59 +0100
commitdbab677f324dcf26dc8c443e3ff39a4eaa6dcacc (patch)
tree020a021a810083b5bbad9897b3e86579e6218d0c /sound/soc/codecs/wm8524.c
parent952c0e260f8dd44ddb6ff0e260130f1906f7bcf3 (diff)
downloadlinux-dbab677f324dcf26dc8c443e3ff39a4eaa6dcacc.tar.bz2
ASoC: wm8524: Add support S32_LE
Allow 32bit sample with this codec. Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com> Link: https://lore.kernel.org/r/cff745cc041c5208910821f0740f988926af8a66.1574418380.git.shengjiu.wang@nxp.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/wm8524.c')
-rw-r--r--sound/soc/codecs/wm8524.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8524.c b/sound/soc/codecs/wm8524.c
index 91e3d1570c45..4e9ab542f648 100644
--- a/sound/soc/codecs/wm8524.c
+++ b/sound/soc/codecs/wm8524.c
@@ -159,7 +159,9 @@ static int wm8524_mute_stream(struct snd_soc_dai *dai, int mute, int stream)
#define WM8524_RATES SNDRV_PCM_RATE_8000_192000
-#define WM8524_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE)
+#define WM8524_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\
+ SNDRV_PCM_FMTBIT_S24_LE |\
+ SNDRV_PCM_FMTBIT_S32_LE)
static const struct snd_soc_dai_ops wm8524_dai_ops = {
.startup = wm8524_startup,