cc50b67dcd
Signed-off-by: Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
16 lines
220 B
C
16 lines
220 B
C
/*
|
|
* (C) P. Horton 2006
|
|
*/
|
|
#include <linux/serial_reg.h>
|
|
|
|
#include <asm/addrspace.h>
|
|
|
|
#include <cobalt.h>
|
|
|
|
void prom_putchar(char c)
|
|
{
|
|
while(!(COBALT_UART[UART_LSR] & UART_LSR_THRE))
|
|
;
|
|
|
|
COBALT_UART[UART_TX] = c;
|
|
}
|