Manuel Lauss | aae7e8d | 2010-01-13 18:46:58 +0100 | [diff] [blame] | 1 | #include <asm/mach-au1x00/au1000.h> |
2 | |||||
3 | void putc(char c) | ||||
4 | { | ||||
Manuel Lauss | 64cd04d | 2011-11-10 12:03:26 +0000 | [diff] [blame] | 5 | #ifdef CONFIG_MIPS_DB1300 |
6 | alchemy_uart_putchar(AU1300_UART2_PHYS_ADDR, c); | ||||
7 | #else | ||||
Manuel Lauss | 8013020 | 2011-05-08 10:42:17 +0200 | [diff] [blame] | 8 | alchemy_uart_putchar(AU1000_UART0_PHYS_ADDR, c); |
Manuel Lauss | 64cd04d | 2011-11-10 12:03:26 +0000 | [diff] [blame] | 9 | #endif |
Manuel Lauss | aae7e8d | 2010-01-13 18:46:58 +0100 | [diff] [blame] | 10 | } |