summaryrefslogtreecommitdiffstats
path: root/arch/mips/arc/console.c
blob: c1934e7969ea5bc36222e3903a8d7662ae545da2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * console.c: SGI arcs console code.
 *
 * Copyright (C) 1996 David S. Miller (dm@sgi.com)
 *
 * $Id: console.c,v 1.2 1998/04/05 11:24:01 ralf Exp $
 */
#include <linux/init.h>
#include <asm/sgialib.h>

__initfunc(void prom_putchar(char c))
{
	long cnt;
	char it = c;

	romvec->write(1, &it, 1, &cnt);
}

__initfunc(char prom_getchar(void))
{
	long cnt;
	char c;

	romvec->read(0, &c, 1, &cnt);
	return c;
}