diff options
author | Louis Chauvet <louis.chauvet@bootlin.com> | 2024-03-27 09:43:36 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-03-28 16:52:31 +0100 |
commit | 67bb37c05a6b56e0e1f804706145a52f655af3f1 (patch) | |
tree | 6db222c9d0c7e86db6f46c0d7c8b34a2bc344c1d /include | |
parent | spi: pxa2xx: Switch to use dev_err_probe() (diff) | |
download | linux-67bb37c05a6b56e0e1f804706145a52f655af3f1.tar.xz linux-67bb37c05a6b56e0e1f804706145a52f655af3f1.zip |
spi: spi-omap2-mcspi.c: revert "Toggle CS after each word"
Commit 5cbc7ca987fb ("spi: spi-omap2-mcspi.c: Toggle CS after each
word") introduced the toggling of CS after each word for the omap2-mcspi
controller.
The implementation is not respectful of the actual spi_message
content, so the CS can be raised after each word even if the
transfer structure asks to keep the CS active for the whole operation.
As it is not used anyway in the current Linux tree, it can be safely
removed.
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
Link: https://msgid.link/r/20240327-spi-omap2-mcspi-multi-mode-v3-1-c4ac329dd5a2@bootlin.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/platform_data/spi-omap2-mcspi.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/platform_data/spi-omap2-mcspi.h b/include/linux/platform_data/spi-omap2-mcspi.h index 3b400b1919a9..9e3c15b4ac91 100644 --- a/include/linux/platform_data/spi-omap2-mcspi.h +++ b/include/linux/platform_data/spi-omap2-mcspi.h @@ -16,9 +16,6 @@ struct omap2_mcspi_platform_config { struct omap2_mcspi_device_config { unsigned turbo_mode:1; - - /* toggle chip select after every word */ - unsigned cs_per_word:1; }; #endif |