]> Git Repo - linux.git/commitdiff
spi: imx: Take in account bits per word instead of assuming 8-bits
authorStefan Moring <[email protected]>
Sun, 17 Sep 2023 16:40:37 +0000 (18:40 +0200)
committerMark Brown <[email protected]>
Mon, 18 Sep 2023 12:05:27 +0000 (13:05 +0100)
The IMX spi driver has a hardcoded 8, breaking the driver for word
lengths other than 8.

Signed-off-by: Stefan Moring <[email protected]>
Reported-by: Sebastian Reichel <[email protected]>
Fixes: 15a6af94a277 ("spi: Increase imx51 ecspi burst length based on transfer length")
Tested-by: Sebastian Reichel <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
drivers/spi/spi-imx.c

index a8a74c7cb79f85baf691df3bc7994030ed4c17f5..498e35c8db2c1d733cc33a197e5cb04d06fd6c43 100644 (file)
@@ -662,7 +662,7 @@ static int mx51_ecspi_prepare_transfer(struct spi_imx_data *spi_imx,
                if (spi_imx->count >= 512)
                        ctrl |= 0xFFF << MX51_ECSPI_CTRL_BL_OFFSET;
                else
-                       ctrl |= (spi_imx->count*8 - 1)
+                       ctrl |= (spi_imx->count * spi_imx->bits_per_word - 1)
                                << MX51_ECSPI_CTRL_BL_OFFSET;
        }
 
This page took 0.069185 seconds and 4 git commands to generate.