android_kernel_xiaomi_sm7250/arch/mips/cobalt/console.c
Yoichi Yuasa cc50b67dcd [MIPS] Cobalt: clean up include files
Signed-off-by: Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
2007-04-27 16:20:23 +01:00

17 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;
}