diff mbox series

ASoC: dmic: Add DSD big endian format support

Message ID 20250205062444.1694810-1-shengjiu.wang@nxp.com (mailing list archive)
State Accepted
Commit 678681828bf4abfd3c31f36390d2097682141d11
Headers show
Series ASoC: dmic: Add DSD big endian format support | expand

Commit Message

Shengjiu Wang Feb. 5, 2025, 6:24 a.m. UTC
Add DSD big endian format support in this generic dmic driver:
DSD_U16_BE and DSD_U32_BE.

Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com>
---
 sound/soc/codecs/dmic.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

Daniel Baluta Feb. 6, 2025, 9:25 a.m. UTC | #1
On Wed, Feb 5, 2025 at 8:27 AM Shengjiu Wang <shengjiu.wang@nxp.com> wrote:
>
> Add DSD big endian format support in this generic dmic driver:
> DSD_U16_BE and DSD_U32_BE.
>
> Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com>

Reviewed-by: Daniel Baluta <daniel.baluta@nxp.com>
Mark Brown Feb. 6, 2025, 5:30 p.m. UTC | #2
On Wed, 05 Feb 2025 14:24:44 +0800, Shengjiu Wang wrote:
> Add DSD big endian format support in this generic dmic driver:
> DSD_U16_BE and DSD_U32_BE.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[1/1] ASoC: dmic: Add DSD big endian format support
      commit: 678681828bf4abfd3c31f36390d2097682141d11

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark
diff mbox series

Patch

diff --git a/sound/soc/codecs/dmic.c b/sound/soc/codecs/dmic.c
index 4fd6f97e5a49..0388f115470c 100644
--- a/sound/soc/codecs/dmic.c
+++ b/sound/soc/codecs/dmic.c
@@ -85,7 +85,9 @@  static struct snd_soc_dai_driver dmic_dai = {
 			| SNDRV_PCM_FMTBIT_S16_LE
 			| SNDRV_PCM_FMTBIT_DSD_U8
 			| SNDRV_PCM_FMTBIT_DSD_U16_LE
-			| SNDRV_PCM_FMTBIT_DSD_U32_LE,
+			| SNDRV_PCM_FMTBIT_DSD_U32_LE
+			| SNDRV_PCM_FMTBIT_DSD_U16_BE
+			| SNDRV_PCM_FMTBIT_DSD_U32_BE,
 	},
 	.ops    = &dmic_dai_ops,
 };