| 33 | } |
| 34 | |
| 35 | void console_interactive_tx_byte(unsigned char byte, void *data_unused) |
| 36 | { |
| 37 | if (byte == '\n') { |
| 38 | /* Some consoles want newline conversion to keep terminals happy. */ |
| 39 | __uart_tx_byte('\r'); |
| 40 | __usb_tx_byte('\r'); |
| 41 | __i2c_smbus_console_tx_byte('\r'); |
| 42 | } |
| 43 | |
| 44 | __spkmodem_tx_byte(byte); |
| 45 | __qemu_debugcon_tx_byte(byte); |
| 46 | __uart_tx_byte(byte); |
| 47 | __ne2k_tx_byte(byte); |
| 48 | __usb_tx_byte(byte); |
| 49 | __spiconsole_tx_byte(byte); |
| 50 | __system76_ec_tx_byte(byte); |
| 51 | __i2c_smbus_console_tx_byte(byte); |
| 52 | __simnow_console_tx_byte(byte); |
| 53 | } |
| 54 | |
| 55 | void console_stored_tx_byte(unsigned char byte, void *data_unused) |
| 56 | { |
no test coverage detected