This is a note to let you know that I've just added the patch titled ASoC: fsl_sai: Fix pins setting for i.MX8QM platform to the 6.1-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: asoc-fsl_sai-fix-pins-setting-for-i.mx8qm-platform.patch and it can be found in the queue-6.1 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 238787157d83969e5149c8e99787d5d90e85fbe5 Mon Sep 17 00:00:00 2001 From: Chancel Liu <chancel.liu@xxxxxxx> Date: Tue, 18 Apr 2023 17:42:59 +0800 Subject: ASoC: fsl_sai: Fix pins setting for i.MX8QM platform From: Chancel Liu <chancel.liu@xxxxxxx> commit 238787157d83969e5149c8e99787d5d90e85fbe5 upstream. SAI on i.MX8QM platform supports the data lines up to 4. So the pins setting should be corrected to 4. Fixes: eba0f0077519 ("ASoC: fsl_sai: Enable combine mode soft") Signed-off-by: Chancel Liu <chancel.liu@xxxxxxx> Acked-by: Shengjiu Wang <shengjiu.wang@xxxxxxxxx> Reviewed-by: Iuliana Prodan <iuliana.prodan@xxxxxxx> Link: https://lore.kernel.org/r/20230418094259.4150771-1-chancel.liu@xxxxxxx Signed-off-by: Mark Brown <broonie@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- sound/soc/fsl/fsl_sai.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/sound/soc/fsl/fsl_sai.c +++ b/sound/soc/fsl/fsl_sai.c @@ -1541,7 +1541,7 @@ static const struct fsl_sai_soc_data fsl .use_imx_pcm = true, .use_edma = true, .fifo_depth = 64, - .pins = 1, + .pins = 4, .reg_offset = 0, .mclk0_is_mclk1 = false, .flags = 0, Patches currently in stable-queue which might be from chancel.liu@xxxxxxx are queue-6.1/asoc-fsl_sai-fix-pins-setting-for-i.mx8qm-platform.patch