repo.or.cz
/
wrt350n-kernel.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[PATCH] ocfs2: zero_user_page conversion
[wrt350n-kernel.git]
/
arch
/
mips
/
cobalt
/
console.c
blob
0485d51f72165169190bd1895526581fd4eb35c5
1
/*
2
* (C) P. Horton 2006
3
*/
4
#include <linux/serial_reg.h>
5
6
#include <asm/addrspace.h>
7
8
#include <cobalt.h>
9
10
void
prom_putchar
(
char
c
)
11
{
12
while
(!(
COBALT_UART
[
UART_LSR
] &
UART_LSR_THRE
))
13
;
14
15
COBALT_UART
[
UART_TX
] =
c
;
16
}