summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sound/soc/fsl/fsl_rpmsg_i2s.c3
-rw-r--r--sound/soc/fsl/imx-pcm-rpmsg.c2
2 files changed, 2 insertions, 3 deletions
diff --git a/sound/soc/fsl/fsl_rpmsg_i2s.c b/sound/soc/fsl/fsl_rpmsg_i2s.c
index 4d004a3f41ae..202906cd3c98 100644
--- a/sound/soc/fsl/fsl_rpmsg_i2s.c
+++ b/sound/soc/fsl/fsl_rpmsg_i2s.c
@@ -192,8 +192,7 @@ static int fsl_rpmsg_i2s_probe(struct platform_device *pdev)
SNDRV_PCM_RATE_192000;
rpmsg_i2s->formats = SNDRV_PCM_FMTBIT_S16_LE |
SNDRV_PCM_FMTBIT_S24_LE |
- SNDRV_PCM_FMTBIT_S32_LE |
- SNDRV_PCM_FMTBIT_S24_3LE;
+ SNDRV_PCM_FMTBIT_S32_LE;
fsl_rpmsg_i2s_dai.playback.rates = rpmsg_i2s->rates;
fsl_rpmsg_i2s_dai.playback.formats = rpmsg_i2s->formats;
fsl_rpmsg_i2s_dai.capture.rates = rpmsg_i2s->rates;
diff --git a/sound/soc/fsl/imx-pcm-rpmsg.c b/sound/soc/fsl/imx-pcm-rpmsg.c
index 03f184a458ec..4caf8326b738 100644
--- a/sound/soc/fsl/imx-pcm-rpmsg.c
+++ b/sound/soc/fsl/imx-pcm-rpmsg.c
@@ -61,7 +61,7 @@ static int imx_rpmsg_pcm_hw_params(struct snd_pcm_substream *substream,
if (params_format(params) == SNDRV_PCM_FORMAT_S16_LE)
rpmsg->send_msg.param.format = RPMSG_S16_LE;
- else if (params_format(params) == SNDRV_PCM_FORMAT_S24_3LE)
+ else if (params_format(params) == SNDRV_PCM_FORMAT_S24_LE)
rpmsg->send_msg.param.format = RPMSG_S24_LE;
else
rpmsg->send_msg.param.format = RPMSG_S32_LE;