| 78 | uart_init(get_uart_for_console()); |
| 79 | } |
| 80 | static inline void __uart_tx_byte(u8 data) |
| 81 | { |
| 82 | uart_tx_byte(get_uart_for_console(), data); |
| 83 | } |
| 84 | static inline void __uart_tx_flush(void) |
| 85 | { |
| 86 | uart_tx_flush(get_uart_for_console()); |
no test coverage detected