repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
llc2: Remove dead code for state machine
[linux/fpc-iii.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
}