1
0
Fork 0
alistair23-linux/arch/mips/cobalt/console.c

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