0a22e0d43b
Signed-off-by: Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
18 lines
312 B
C
18 lines
312 B
C
/*
|
|
* (C) P. Horton 2006
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/console.h>
|
|
#include <linux/serial_reg.h>
|
|
#include <asm/addrspace.h>
|
|
#include <asm/mach-cobalt/cobalt.h>
|
|
|
|
void prom_putchar(char c)
|
|
{
|
|
while(!(COBALT_UART[UART_LSR] & UART_LSR_THRE))
|
|
;
|
|
|
|
COBALT_UART[UART_TX] = c;
|
|
}
|