Merge tag 'stable/for-linus-3.4-rc1-tag' of git://git.kernel.org/pub/scm/linux/kernel...
[deliverable/linux.git] / arch / mips / boot / compressed / uart-alchemy.c
1 #include <asm/mach-au1x00/au1000.h>
2
3 void putc(char c)
4 {
5 #ifdef CONFIG_MIPS_DB1300
6 alchemy_uart_putchar(AU1300_UART2_PHYS_ADDR, c);
7 #else
8 alchemy_uart_putchar(AU1000_UART0_PHYS_ADDR, c);
9 #endif
10 }
This page took 0.037763 seconds and 6 git commands to generate.