Lines Matching refs:t
34 struct spi_transfer t; in __nci_spi_send() local
36 memset(&t, 0, sizeof(struct spi_transfer)); in __nci_spi_send()
39 t.tx_buf = skb->data; in __nci_spi_send()
40 t.len = skb->len; in __nci_spi_send()
43 t.tx_buf = &t; in __nci_spi_send()
44 t.len = 0; in __nci_spi_send()
46 t.cs_change = cs_change; in __nci_spi_send()
47 t.delay.value = nspi->xfer_udelay; in __nci_spi_send()
48 t.delay.unit = SPI_DELAY_UNIT_USECS; in __nci_spi_send()
49 t.speed_hz = nspi->xfer_speed_hz; in __nci_spi_send()
52 spi_message_add_tail(&t, &m); in __nci_spi_send()