[PATCH] ocfs2: zero_user_page conversion
[wrt350n-kernel.git] / arch / mips / cobalt / console.c
blob0485d51f72165169190bd1895526581fd4eb35c5
1 /*
2 * (C) P. Horton 2006
3 */
4 #include <linux/serial_reg.h>
6 #include <asm/addrspace.h>
8 #include <cobalt.h>
10 void prom_putchar(char c)
12 while(!(COBALT_UART[UART_LSR] & UART_LSR_THRE))
15 COBALT_UART[UART_TX] = c;