M7350/kernel/arch/mips/boot/compressed/uart-alchemy.c
2024-09-09 08:52:07 +00:00

11 lines
198 B
C

#include <asm/mach-au1x00/au1000.h>
void putc(char c)
{
#ifdef CONFIG_MIPS_DB1300
alchemy_uart_putchar(AU1300_UART2_PHYS_ADDR, c);
#else
alchemy_uart_putchar(AU1000_UART0_PHYS_ADDR, c);
#endif
}