Message ID | 20200511210134.1224532-2-lkundrak@v3.sk (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Make sound work on DT-based MMP2 machines | expand |
On Mon, 11 May 2020 23:01:24 +0200, Lubomir Rintel wrote: > The hw_params() callback handles the 3-byte format, not > SNDRV_PCM_FMTBIT_S24_LE. Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.8 Thanks! [1/7] ASoC: mmp-sspa: A trivial typo fix commit: e0b9024d2c8851b18b953823204278602bf73086 [2/7] ASoC: mmp-sspa: Get rid of dma_params and phys_base commit: c9aeda1c94973f835b3d1b6c785a414caaf935c3 [3/7] ASoC: mmp-sspa: Add support for soc-generic-dmaengine-pcm commit: 724da05378ba7af6e273451a2c3f565a3315a9db [4/7] ASoC: mmp-sspa: Remove the embedded struct ssp_device commit: 3c4e89df3b45348dc0ee01a2ef1be710f7424ff7 [5/7] ASoC: mmp-sspa: Prepare/unprepare the clocks commit: 8ecdcac8792b6787ecb2341d25cb82165cf0129d [6/7] ASoC: mmp-sspa: Add support for the runtime power management commit: 7d98cc648253c362ebfc582b11095a0e3f001896 [7/7] ASoC: mmp-sspa: Set appropriate bus format for given bit width commit: 39ec7e9b699910792468cf41a179d9930052e8ff 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
On Mon, 11 May 2020 23:01:24 +0200, Lubomir Rintel wrote: > The hw_params() callback handles the 3-byte format, not > SNDRV_PCM_FMTBIT_S24_LE. Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.8 Thanks! [1/2] ASoC: Add Marvell MMP SSPA binding commit: d81bb8726c247c3e7719d21bf213c5400de29e03 [2/2] ASoC: mmp-sspa: Add Device Tree support commit: a97e384ba78fd8bf7ba8c32718424d8a7536416e 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 --git a/sound/soc/pxa/mmp-sspa.c b/sound/soc/pxa/mmp-sspa.c index 3548a2634a63..1ca6afe464c4 100644 --- a/sound/soc/pxa/mmp-sspa.c +++ b/sound/soc/pxa/mmp-sspa.c @@ -362,7 +362,7 @@ static int mmp_sspa_probe(struct snd_soc_dai *dai) #define MMP_SSPA_RATES SNDRV_PCM_RATE_8000_192000 #define MMP_SSPA_FORMATS (SNDRV_PCM_FMTBIT_S8 | \ SNDRV_PCM_FMTBIT_S16_LE | \ - SNDRV_PCM_FMTBIT_S24_LE | \ + SNDRV_PCM_FMTBIT_S24_3LE | \ SNDRV_PCM_FMTBIT_S32_LE) static const struct snd_soc_dai_ops mmp_sspa_dai_ops = {
The hw_params() callback handles the 3-byte format, not SNDRV_PCM_FMTBIT_S24_LE. Signed-off-by: Lubomir Rintel <lkundrak@v3.sk> --- sound/soc/pxa/mmp-sspa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)