2006-02-12 18:10:25 +01:00
|
|
|
/*
|
|
|
|
* (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>
|
|
|
|
|
2007-03-02 04:42:33 +01:00
|
|
|
void prom_putchar(char c)
|
2006-02-12 18:10:25 +01:00
|
|
|
{
|
|
|
|
while(!(COBALT_UART[UART_LSR] & UART_LSR_THRE))
|
|
|
|
;
|
|
|
|
|
|
|
|
COBALT_UART[UART_TX] = c;
|
|
|
|
}
|