Home
last modified time | relevance | path

Searched refs:SPI_CONTROLLER_NO_TX (Results 1 – 6 of 6) sorted by relevance

/linux-6.6.21/drivers/spi/
Dspi-bitbang-txrx.h60 if ((flags & SPI_CONTROLLER_NO_TX) == 0) { in bitbang_txrx_be_cpha0()
93 if ((flags & SPI_CONTROLLER_NO_TX) == 0) { in bitbang_txrx_be_cpha1()
125 if ((flags & SPI_CONTROLLER_NO_TX) == 0) { in bitbang_txrx_le_cpha0()
159 if ((flags & SPI_CONTROLLER_NO_TX) == 0) { in bitbang_txrx_le_cpha1()
Dspi-lp8841-rtc.c77 if ((flags & SPI_CONTROLLER_NO_TX) == 0) in bitbang_txrx_be_cpha0_lsb()
123 SPI_CONTROLLER_NO_TX, word, 8); in spi_lp8841_rtc_transfer_one()
Dspi-gpio.c422 host->flags = SPI_CONTROLLER_NO_TX; in spi_gpio_probe()
440 if (host->flags & SPI_CONTROLLER_NO_TX) { in spi_gpio_probe()
Dspi-bitbang.c251 flags = t->tx_buf ? SPI_CONTROLLER_NO_RX : SPI_CONTROLLER_NO_TX; in spi_bitbang_bufs()
Dspi.c3935 if ((flags & SPI_CONTROLLER_NO_TX) && xfer->tx_buf) in __spi_validate()
/linux-6.6.21/include/linux/spi/
Dspi.h565 #define SPI_CONTROLLER_NO_TX BIT(2) /* Can't do buffer write */ macro