Lines Matching refs:u_tmp
205 struct spi_ioc_transfer *u_tmp;
224 for (n = n_xfers, k_tmp = k_xfers, u_tmp = u_xfers;
226 n--, k_tmp++, u_tmp++) {
230 unsigned int len_aligned = ALIGN(u_tmp->len, ARCH_KMALLOC_MINALIGN);
232 k_tmp->len = u_tmp->len;
245 if (u_tmp->rx_buf) {
255 if (u_tmp->tx_buf) {
264 (uintptr_t) u_tmp->tx_buf,
265 u_tmp->len))
270 k_tmp->cs_change = !!u_tmp->cs_change;
271 k_tmp->tx_nbits = u_tmp->tx_nbits;
272 k_tmp->rx_nbits = u_tmp->rx_nbits;
273 k_tmp->bits_per_word = u_tmp->bits_per_word;
274 k_tmp->delay.value = u_tmp->delay_usecs;
276 k_tmp->speed_hz = u_tmp->speed_hz;
277 k_tmp->word_delay.value = u_tmp->word_delay_usecs;
301 for (n = n_xfers, k_tmp = k_xfers, u_tmp = u_xfers;
303 n--, k_tmp++, u_tmp++) {
304 if (u_tmp->rx_buf) {
306 (uintptr_t) u_tmp->rx_buf, k_tmp->rx_buf,
307 u_tmp->len)) {