aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/cobalt/console.c
blob: 0485d51f72165169190bd1895526581fd4eb35c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * (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;
}