| 42 | } |
| 43 | |
| 44 | void uart_tx_byte(unsigned int idx, unsigned char data) |
| 45 | { |
| 46 | struct pl011_uart *regs = uart_platform_baseptr(idx); |
| 47 | |
| 48 | write8(®s->dr, data); |
| 49 | uart_tx_flush(idx); |
| 50 | } |
| 51 | |
| 52 | void uart_tx_flush(unsigned int idx) |
| 53 | { |
no test coverage detected