Searched refs:buf_rx (Results 1 – 2 of 2) sorted by relevance
81 u8 buf_rx[2]; in read16() local84 ret = spi_read(client, buf_rx, 2); in read16()88 return (buf_rx[0] << 8) | buf_rx[1]; in read16()94 u8 buf_rx[3]; in read24() local97 ret = spi_read(client, buf_rx, 3); in read24()101 return (buf_rx[1] << 8) | buf_rx[2]; in read24()
101 volatile struct st_cpc_rx_list buf_rx; /* ptr. to reception buffer */ member271 cpc_tty->buf_rx.first = cpc_tty->buf_rx.last = NULL; in cpc_tty_init()327 if (cpc_tty_area[port].buf_rx.first) { in cpc_tty_open()329 while (cpc_tty_area[port].buf_rx.first) { in cpc_tty_open()330 aux = (unsigned char *)cpc_tty_area[port].buf_rx.first; in cpc_tty_open()331 cpc_tty_area[port].buf_rx.first = cpc_tty_area[port].buf_rx.first->next; in cpc_tty_open()334 cpc_tty_area[port].buf_rx.first = NULL; in cpc_tty_open()335 cpc_tty_area[port].buf_rx.last = NULL; in cpc_tty_open()396 if (cpc_tty->buf_rx.first) { in cpc_tty_close()398 while (cpc_tty->buf_rx.first) { in cpc_tty_close()[all …]