Lines Matching refs:tx
38 .tx_buf = adis->tx, in adis_write_reg()
44 .tx_buf = adis->tx + 2, in adis_write_reg()
50 .tx_buf = adis->tx + 4, in adis_write_reg()
56 .tx_buf = adis->tx + 6, in adis_write_reg()
61 .tx_buf = adis->tx + 8, in adis_write_reg()
73 adis->tx[0] = ADIS_WRITE_REG(ADIS_REG_PAGE_ID); in adis_write_reg()
74 adis->tx[1] = page; in adis_write_reg()
80 adis->tx[8] = ADIS_WRITE_REG(reg + 3); in adis_write_reg()
81 adis->tx[9] = (value >> 24) & 0xff; in adis_write_reg()
82 adis->tx[6] = ADIS_WRITE_REG(reg + 2); in adis_write_reg()
83 adis->tx[7] = (value >> 16) & 0xff; in adis_write_reg()
85 adis->tx[4] = ADIS_WRITE_REG(reg + 1); in adis_write_reg()
86 adis->tx[5] = (value >> 8) & 0xff; in adis_write_reg()
88 adis->tx[2] = ADIS_WRITE_REG(reg); in adis_write_reg()
89 adis->tx[3] = value & 0xff; in adis_write_reg()
130 .tx_buf = adis->tx, in adis_read_reg()
136 .tx_buf = adis->tx + 2, in adis_read_reg()
142 .tx_buf = adis->tx + 4, in adis_read_reg()
160 adis->tx[0] = ADIS_WRITE_REG(ADIS_REG_PAGE_ID); in adis_read_reg()
161 adis->tx[1] = page; in adis_read_reg()
167 adis->tx[2] = ADIS_READ_REG(reg + 2); in adis_read_reg()
168 adis->tx[3] = 0; in adis_read_reg()
171 adis->tx[4] = ADIS_READ_REG(reg); in adis_read_reg()
172 adis->tx[5] = 0; in adis_read_reg()