Message ID | 20210618150741.401739-1-codrin.ciubotariu@microchip.com |
---|---|
State | Accepted |
Commit | 489a830a25e1730aebf7ff53430c170db9a1771b |
Headers | show |
Series | [1/2] ASoC: atmel-i2s: Set symmetric sample bits | expand |
On Fri, 18 Jun 2021 18:07:40 +0300, Codrin Ciubotariu wrote: > The I2S needs to have the same sample bits for both capture and playback > streams. Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/2] ASoC: atmel-i2s: Set symmetric sample bits commit: 489a830a25e1730aebf7ff53430c170db9a1771b [2/2] ASoC: atmel-i2s: Fix usage of capture and playback at the same time commit: 3b7961a326f8a7e03f54a19f02fedae8d488b80f 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/atmel/atmel-i2s.c b/sound/soc/atmel/atmel-i2s.c index e8fe1a7a4d83..a95002b0cc8e 100644 --- a/sound/soc/atmel/atmel-i2s.c +++ b/sound/soc/atmel/atmel-i2s.c @@ -542,6 +542,7 @@ static struct snd_soc_dai_driver atmel_i2s_dai = { }, .ops = &atmel_i2s_dai_ops, .symmetric_rate = 1, + .symmetric_sample_bits = 1, }; static const struct snd_soc_component_driver atmel_i2s_component = {
The I2S needs to have the same sample bits for both capture and playback streams. Fixes: b543e467d1a9 ("ASoC: atmel-i2s: add driver for the new Atmel I2S controller") Signed-off-by: Codrin Ciubotariu <codrin.ciubotariu@microchip.com> --- sound/soc/atmel/atmel-i2s.c | 1 + 1 file changed, 1 insertion(+)