Home
last modified time | relevance | path

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

/linux/drivers/spi/
H A 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()
H A 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()
H A Dspi-gpio.c409 host->flags = SPI_CONTROLLER_NO_TX; in spi_gpio_probe()
428 if (host->flags & SPI_CONTROLLER_NO_TX) { in spi_gpio_probe()
H A Dspi-bitbang.c257 flags = t->tx_buf ? SPI_CONTROLLER_NO_RX : SPI_CONTROLLER_NO_TX; in spi_bitbang_bufs()
H A Dspi.c4069 if ((flags & SPI_CONTROLLER_NO_TX) && xfer->tx_buf) in __spi_validate()
/linux/include/linux/spi/
H A Dspi.h591 #define SPI_CONTROLLER_NO_TX BIT(2) /* Can't do buffer write */ macro