diff options
| author | Jonathan Cameron <[email protected]> | 2024-08-03 10:52:08 +0100 |
|---|---|---|
| committer | Jonathan Cameron <[email protected]> | 2024-08-03 10:52:08 +0100 |
| commit | b71fdd65cad331c0d10fe1b529bbb830a4dd8eb0 (patch) | |
| tree | 6ac1d6169528a7623048c1849fb5f5d370d36bf2 /include/linux | |
| parent | 6140a92cd086e53e9a6cd7fcea644fd3f9b8fe25 (diff) | |
| parent | 96472f18a4affdaff5013a836c48375f1eddb4a4 (diff) | |
Merge tag 'spi-mosi-config' into togreg
spi: Support MOSI idle configuration
Add support for configuring the idle state of the MOSI signal in
controllers.
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/spi/spi_bitbang.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/spi/spi_bitbang.h b/include/linux/spi/spi_bitbang.h index d4cb83195f7a..c92cd43a47f4 100644 --- a/include/linux/spi/spi_bitbang.h +++ b/include/linux/spi/spi_bitbang.h @@ -24,6 +24,7 @@ struct spi_bitbang { #define BITBANG_CS_ACTIVE 1 /* normally nCS, active low */ #define BITBANG_CS_INACTIVE 0 + void (*set_mosi_idle)(struct spi_device *spi); /* txrx_bufs() may handle dma mapping for transfers that don't * already have one (transfer.{tx,rx}_dma is zero), or use PIO */ |