repo.or.cz
/
zen-stable.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'v3.3.7' into 3.3/master
[zen-stable.git]
/
arch
/
mips
/
boot
/
compressed
/
uart-alchemy.c
blob
3112df8f90dbc9726166f13e93a82c441efc5a27
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
}