console.c 312 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/*
 * (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>

Y
Yoichi Yuasa 已提交
12
void prom_putchar(char c)
13 14 15 16 17 18
{
	while(!(COBALT_UART[UART_LSR] & UART_LSR_THRE))
		;

	COBALT_UART[UART_TX] = c;
}