spi: Raise limit on number of chip selects to 24

We have a system which uses 24 SPI chip selects, raise the hard coded
limit accordingly.

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Link: https://patch.msgid.link/20250629-spi-increase-number-of-cs-v2-1-85a0a09bab32@pengutronix.de
Signed-off-by: Mark Brown <broonie@kernel.org>
pull/1289/head^2
Marc Kleine-Budde 2025-06-29 18:15:32 +02:00 committed by Mark Brown
parent d0b3b7b22d
commit 96893cdd47
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@
#include <uapi/linux/spi/spi.h> #include <uapi/linux/spi/spi.h>
/* Max no. of CS supported per spi device */ /* Max no. of CS supported per spi device */
#define SPI_CS_CNT_MAX 16 #define SPI_CS_CNT_MAX 24
struct dma_chan; struct dma_chan;
struct software_node; struct software_node;