Lines Matching refs:tx_buf
70 u8 tx_buf[ST33ZP24_SPI_BUFFER_SIZE]; member
117 u8 *tx_buf = (u8 *)phy->spi_xfer.tx_buf; in st33zp24_spi_send() local
122 memcpy(tx_buf + total_length, &data, sizeof(data)); in st33zp24_spi_send()
125 memcpy(tx_buf + total_length, &data, sizeof(data)); in st33zp24_spi_send()
129 tx_buf[total_length++] = tpm_size >> 8; in st33zp24_spi_send()
130 tx_buf[total_length++] = tpm_size; in st33zp24_spi_send()
133 memcpy(&tx_buf[total_length], tpm_data, tpm_size); in st33zp24_spi_send()
137 memset(&tx_buf[total_length], TPM_DUMMY_BYTE, nbr_dummy_bytes); in st33zp24_spi_send()
163 u8 *tx_buf = (u8 *)phy->spi_xfer.tx_buf; in read8_reg() local
168 memcpy(tx_buf + total_length, &data, sizeof(data)); in read8_reg()
171 memcpy(tx_buf + total_length, &data, sizeof(data)); in read8_reg()
175 memset(&tx_buf[total_length], TPM_DUMMY_BYTE, in read8_reg()
342 phy->spi_xfer.tx_buf = phy->tx_buf; in tpm_st33_spi_probe()