Lines Matching refs:xfer
33 struct spi_transfer xfer; in tps65912_spi_write() local
39 xfer.tx_buf = &tx_buf; in tps65912_spi_write()
40 xfer.rx_buf = NULL; in tps65912_spi_write()
41 xfer.len = sizeof(unsigned long); in tps65912_spi_write()
42 xfer.bits_per_word = 24; in tps65912_spi_write()
45 spi_message_add_tail(&xfer, &msg); in tps65912_spi_write()
57 struct spi_transfer xfer; in tps65912_spi_read() local
66 xfer.tx_buf = &tx_buf; in tps65912_spi_read()
67 xfer.rx_buf = &rx_buf; in tps65912_spi_read()
68 xfer.len = sizeof(unsigned long); in tps65912_spi_read()
69 xfer.bits_per_word = 24; in tps65912_spi_read()
72 spi_message_add_tail(&xfer, &msg); in tps65912_spi_read()