| H A D | serial_core.h | 901 #define __uart_port_tx(uport, ch, flags, tx_ready, put_char, tx_done, \ argument 908 for (; (for_test) && (tx_ready); (for_post), __port->icount.tx++) { \ 964 #define uart_port_tx_limited(port, ch, count, tx_ready, put_char, tx_done) ({ \ argument 966 __uart_port_tx(port, ch, 0, tx_ready, put_char, tx_done, __count, \ 982 #define uart_port_tx_limited_flags(port, ch, flags, count, tx_ready, put_char, tx_done) ({ \ argument 984 __uart_port_tx(port, ch, flags, tx_ready, put_char, tx_done, __count, \ 997 #define uart_port_tx(port, ch, tx_ready, put_char) \ argument 998 __uart_port_tx(port, ch, 0, tx_ready, put_char, ({}), true, ({})) 1011 #define uart_port_tx_flags(port, ch, flags, tx_ready, put_char) \ argument 1012 __uart_port_tx(port, ch, flags, tx_ready, put_char, ({}), true, ({}))
|