Convert from uart_puts to kprintf

This commit is contained in:
Imbus 2025-09-02 00:17:34 +02:00
parent 7018424278
commit a6ae43f583
4 changed files with 14 additions and 24 deletions

View file

@ -4,7 +4,4 @@
/** Send a single character to the UART device */
void uart_putc(char c);
/** Send a **NULL TERMINATED** string to the UART device */
void uart_puts(const char *s);
#endif