H A D | serial_core.h | 897 #define __uart_port_tx(uport, ch, flags, tx_ready, put_char, tx_done, \ argument 904 for (; (for_test) && (tx_ready); (for_post), __port->icount.tx++) { \ 960 #define uart_port_tx_limited(port, ch, count, tx_ready, put_char, tx_done) ({ \ argument 962 __uart_port_tx(port, ch, 0, tx_ready, put_char, tx_done, __count, \ 978 #define uart_port_tx_limited_flags(port, ch, flags, count, tx_ready, put_char, tx_done) ({ \ argument 980 __uart_port_tx(port, ch, flags, tx_ready, put_char, tx_done, __count, \ 993 #define uart_port_tx(port, ch, tx_ready, put_char) \ argument 994 __uart_port_tx(port, ch, 0, tx_ready, put_char, ({}), true, ({})) 1007 #define uart_port_tx_flags(port, ch, flags, tx_ready, put_char) \ argument 1008 __uart_port_tx(port, ch, flags, tx_ready, put_char, ({}), true, ({}))
|